Enum ARPlaneDetection
- All Implemented Interfaces:
Comparable<ARPlaneDetection>
Which real-world surface orientations an
ARSession should detect and
report as ARPlanes.-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDetect horizontal surfaces such as floors and tables.Detect both horizontal and vertical surfaces.Do not detect planes.Detect vertical surfaces such as walls. -
Method Summary
Modifier and TypeMethodDescriptionbooleanTrue when this setting includes horizontal surfaces.booleanTrue when this setting includes vertical surfaces.static ARPlaneDetectionReturns the enum constant of this type with the specified name.static ARPlaneDetection[]values()Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class Enum
clone, compareTo, equals, getDeclaringClass, getEnumValues, hashCode, name, ordinal, setEnumValues, toString, valueOf
-
Enum Constant Details
-
NONE
Do not detect planes. -
HORIZONTAL
Detect horizontal surfaces such as floors and tables. -
VERTICAL
Detect vertical surfaces such as walls. -
HORIZONTAL_AND_VERTICAL
Detect both horizontal and vertical surfaces.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
includesHorizontal
public boolean includesHorizontal()True when this setting includes horizontal surfaces. -
includesVertical
public boolean includesVertical()True when this setting includes vertical surfaces.
-