Enum BSPTreeVisitor.Order
- All Implemented Interfaces:
Serializable
,Comparable<BSPTreeVisitor.Order>
,java.lang.constant.Constable
- Enclosing interface:
- BSPTreeVisitor<S extends Space>
Enumerate for visit order with respect to plus sub-tree, minus sub-tree and cut sub-hyperplane.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIndicator for visit order minus sub-tree, then plus sub-tree, and last cut sub-hyperplane.Indicator for visit order minus sub-tree, then cut sub-hyperplane, and last plus sub-tree.Indicator for visit order plus sub-tree, then minus sub-tree, and last cut sub-hyperplane.Indicator for visit order plus sub-tree, then cut sub-hyperplane, and last minus sub-tree.Indicator for visit order cut sub-hyperplane, then minus sub-tree, and last plus sub-tree.Indicator for visit order cut sub-hyperplane, then plus sub-tree, and last minus sub-tree. -
Method Summary
Modifier and TypeMethodDescriptionstatic BSPTreeVisitor.Order
Returns the enum constant of this type with the specified name.static BSPTreeVisitor.Order[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PLUS_MINUS_SUB
Indicator for visit order plus sub-tree, then minus sub-tree, and last cut sub-hyperplane. -
PLUS_SUB_MINUS
Indicator for visit order plus sub-tree, then cut sub-hyperplane, and last minus sub-tree. -
MINUS_PLUS_SUB
Indicator for visit order minus sub-tree, then plus sub-tree, and last cut sub-hyperplane. -
MINUS_SUB_PLUS
Indicator for visit order minus sub-tree, then cut sub-hyperplane, and last plus sub-tree. -
SUB_PLUS_MINUS
Indicator for visit order cut sub-hyperplane, then plus sub-tree, and last minus sub-tree. -
SUB_MINUS_PLUS
Indicator for visit order cut sub-hyperplane, then minus sub-tree, and last plus sub-tree.
-
-
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
-