public enum PlaneFilter extends Enum<PlaneFilter>
Enum Constant and Description |
---|
ANY
ANY: All planes will be detected, regardless of their orientation.
|
ARBITRARY
ARBITRARY: Only planes with an arbitrary orientation will be detected.
|
HORIZONTAL
HORIZONTAL: Only horizontal planes will be detected, regardless if they point upward or downward.
|
HORIZONTAL_DOWNWARD
HORIZONTAL_DOWNWARD: Only horizontal planes that point downward (e.g.
|
HORIZONTAL_UPWARD
HORIZONTAL_UPWARD: Only horizontal planes that point upward (e.g.
|
VERTICAL
VERTICAL: Only vertical planes (e.g.
|
Modifier and Type | Method and Description |
---|---|
static PlaneFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlaneFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlaneFilter HORIZONTAL_UPWARD
public static final PlaneFilter HORIZONTAL_DOWNWARD
public static final PlaneFilter HORIZONTAL
public static final PlaneFilter VERTICAL
public static final PlaneFilter ARBITRARY
public static final PlaneFilter ANY
public static PlaneFilter[] values()
for (PlaneFilter c : PlaneFilter.values()) System.out.println(c);
public static PlaneFilter 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