public static enum Region.DisplayAlign extends java.lang.Enum<Region.DisplayAlign>
Modifier and Type | Method and Description |
---|---|
static Region.DisplayAlign |
fromString(java.lang.String value) |
static Region.DisplayAlign |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Region.DisplayAlign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Region.DisplayAlign BEFORE
public static final Region.DisplayAlign CENTER
public static final Region.DisplayAlign AFTER
public static Region.DisplayAlign[] values()
for (Region.DisplayAlign c : Region.DisplayAlign.values()) System.out.println(c);
public static Region.DisplayAlign 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 Region.DisplayAlign fromString(java.lang.String value)