public enum PlaneType extends Enum<PlaneType>
Enum Constant and Description |
---|
ARBITRARY
ARBITRARY: The detected plane has an arbitrary orientation.
|
HORIZONTAL_DOWNWARD
HORIZONTAL_DOWNWARD: The detected plane is horizontal and points downward (e.g.
|
HORIZONTAL_UPWARD
HORIZONTAL_UPWARD: The detected plane is horizontal and points upward (e.g.
|
VERTICAL
VERTICAL: The detected plane is vertical (e.g.
|
Modifier and Type | Method and Description |
---|---|
static PlaneType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlaneType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlaneType HORIZONTAL_UPWARD
public static final PlaneType HORIZONTAL_DOWNWARD
public static final PlaneType VERTICAL
public static final PlaneType ARBITRARY
public static PlaneType[] values()
for (PlaneType c : PlaneType.values()) System.out.println(c);
public static PlaneType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null