public enum Plane extends Enum<Plane>
| Enum Constant and Description | 
|---|
| ALLDenoting the "all planes" case. | 
| XYThe X-Y plane. | 
| XZThe X-Z plane. | 
| YZThe Y-Z plane. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Plane | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Plane[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Plane XY
public static final Plane YZ
public static final Plane XZ
public static final Plane ALL
public static Plane[] values()
for (Plane c : Plane.values()) System.out.println(c);
public static Plane 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 © 2014–2020, Printing in 3D. All rights reserved.