public static enum Polygon3dCalc.Plane extends java.lang.Enum<Polygon3dCalc.Plane>
| Modifier and Type | Method and Description | 
|---|---|
| static Polygon3dCalc.Plane | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static Polygon3dCalc.Plane[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Polygon3dCalc.Plane YZ
public static final Polygon3dCalc.Plane ZX
public static final Polygon3dCalc.Plane XY
public static Polygon3dCalc.Plane[] values()
for (Polygon3dCalc.Plane c : Polygon3dCalc.Plane.values()) System.out.println(c);
public static Polygon3dCalc.Plane valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null