public static enum SubstanceSlices.Side extends java.lang.Enum<SubstanceSlices.Side>
| Enum Constant | Description |
|---|---|
BOTTOM |
Bottom side.
|
LEFT |
Left side.
|
RIGHT |
Right side.
|
TOP |
Top side.
|
| Modifier and Type | Method | Description |
|---|---|---|
static SubstanceSlices.Side |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SubstanceSlices.Side[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubstanceSlices.Side LEFT
public static final SubstanceSlices.Side RIGHT
public static final SubstanceSlices.Side TOP
public static final SubstanceSlices.Side BOTTOM
public static SubstanceSlices.Side[] values()
for (SubstanceSlices.Side c : SubstanceSlices.Side.values()) System.out.println(c);
public static SubstanceSlices.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