public static enum DirectionAxis.Axis extends Enum<DirectionAxis.Axis>
| Enum Constant and Description | 
|---|
X_MINUS
Move in the negative X direction relative to the feature. 
 | 
X_PLUS
Move in the positive X direction relative to the feature. 
 | 
Y_MINUS
Move in the negative Y direction relative to the feature. 
 | 
Y_PLUS
Move in the positive Y direction relative to the feature. 
 | 
Z_MINUS
Move in the negative Z direction relative to the feature. 
 | 
Z_PLUS
Move in the positive Z direction relative to the feature. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static DirectionAxis.Axis | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static DirectionAxis.Axis[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DirectionAxis.Axis X_PLUS
public static final DirectionAxis.Axis X_MINUS
public static final DirectionAxis.Axis Y_PLUS
public static final DirectionAxis.Axis Y_MINUS
public static final DirectionAxis.Axis Z_PLUS
public static final DirectionAxis.Axis Z_MINUS
public static DirectionAxis.Axis[] values()
for (DirectionAxis.Axis c : DirectionAxis.Axis.values()) System.out.println(c);
public static DirectionAxis.Axis 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 nullCopyright © 2020. All rights reserved.