public enum PlaneIndicator extends Enum<PlaneIndicator> implements Enumeration
AngleInPlaneConstraint
or a AngleOutOfPlaneConstraint| Enum Constant and Description |
|---|
XY
Indicates the use of the XY plane for a
AngleInPlaneConstraint
or a AngleOutOfPlaneConstraint |
XZ
Indicates the use of the XZ plane for a
AngleInPlaneConstraint
or a AngleOutOfPlaneConstraint |
YZ
Indicates the use of the XZ plane for a
AngleInPlaneConstraint
or a AngleOutOfPlaneConstraint |
| Modifier and Type | Method and Description |
|---|---|
static PlaneIndicator |
getDefault()
Get the enum constant that is considered to be the default.
|
static PlaneIndicator |
getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
int |
getValue()
Get the numeric value associated with this enum constant.
|
static PlaneIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlaneIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlaneIndicator XY
AngleInPlaneConstraint
or a AngleOutOfPlaneConstraintpublic static final PlaneIndicator XZ
AngleInPlaneConstraint
or a AngleOutOfPlaneConstraintpublic static final PlaneIndicator YZ
AngleInPlaneConstraint
or a AngleOutOfPlaneConstraintpublic static PlaneIndicator[] values()
for (PlaneIndicator c : PlaneIndicator.values()) System.out.println(c);
public static PlaneIndicator 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 nullpublic int getValue()
getValue in interface Enumeration@Nonnull public static PlaneIndicator getFromValue(int value)
value - a numeric value.@Nonnull public static PlaneIndicator getDefault()