public static enum Style.LayoutRegion extends Enum<Style.LayoutRegion>
| Modifier and Type | Method and Description |
|---|---|
static Style.LayoutRegion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style.LayoutRegion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style.LayoutRegion NORTH
public static final Style.LayoutRegion EAST
public static final Style.LayoutRegion SOUTH
public static final Style.LayoutRegion WEST
public static final Style.LayoutRegion CENTER
public static Style.LayoutRegion[] values()
for (Style.LayoutRegion c : Style.LayoutRegion.values()) System.out.println(c);
public static Style.LayoutRegion valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2012. All Rights Reserved.