public enum PosAlignment extends java.lang.Enum<PosAlignment>
| Enum Constant and Description |
|---|
Absolute |
Random |
Relative |
Rotational |
| Modifier and Type | Method and Description |
|---|---|
static PosAlignment |
getForName(java.lang.String s) |
static PosAlignment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PosAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PosAlignment Relative
public static final PosAlignment Random
public static final PosAlignment Rotational
public static final PosAlignment Absolute
public static PosAlignment[] values()
for (PosAlignment c : PosAlignment.values()) System.out.println(c);
public static PosAlignment 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 nullpublic static PosAlignment getForName(java.lang.String s)