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