public static enum Plane.Side extends java.lang.Enum<Plane.Side>
Enum Constant and Description |
---|
Negative
a point on the side with negative pseudo-distance
|
None
a point that lies in the plane
|
Positive
a point on the side with positive pseudo-distance
|
Modifier and Type | Method and Description |
---|---|
static Plane.Side |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Plane.Side[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Plane.Side None
public static final Plane.Side Positive
public static final Plane.Side Negative
public static Plane.Side[] values()
for (Plane.Side c : Plane.Side.values()) System.out.println(c);
public static Plane.Side 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