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