public enum EnvironmentAlignment extends java.lang.Enum<EnvironmentAlignment>
Enum Constant and Description |
---|
HORIZONTAL
The horizontal.
|
HORIZONTAL_INVERTED
The horizontal inverted.
|
VERTICAL
The vertical.
|
VERTICAL_INVERTED
The vertical inverted.
|
Modifier and Type | Method and Description |
---|---|
static EnvironmentAlignment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnvironmentAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnvironmentAlignment HORIZONTAL
public static final EnvironmentAlignment HORIZONTAL_INVERTED
public static final EnvironmentAlignment VERTICAL
public static final EnvironmentAlignment VERTICAL_INVERTED
public static EnvironmentAlignment[] values()
for (EnvironmentAlignment c : EnvironmentAlignment.values()) System.out.println(c);
public static EnvironmentAlignment 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