org.pushingpixels.flamingo.api.common
public static enum AbstractCommandButton.CommandButtonLocationOrderKind extends Enum<AbstractCommandButton.CommandButtonLocationOrderKind>
Enum Constant and Description |
---|
FIRST
Indicates that this button is the first button in the strip.
|
LAST
Indicates that this button is the last button in the strip.
|
MIDDLE
Indicates that this button is in the middle of the strip.
|
ONLY
Indicates that this button is the only button in the strip.
|
Modifier and Type | Method and Description |
---|---|
static AbstractCommandButton.CommandButtonLocationOrderKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractCommandButton.CommandButtonLocationOrderKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractCommandButton.CommandButtonLocationOrderKind ONLY
public static final AbstractCommandButton.CommandButtonLocationOrderKind FIRST
public static final AbstractCommandButton.CommandButtonLocationOrderKind MIDDLE
public static final AbstractCommandButton.CommandButtonLocationOrderKind LAST
public static AbstractCommandButton.CommandButtonLocationOrderKind[] values()
for (AbstractCommandButton.CommandButtonLocationOrderKind c : AbstractCommandButton.CommandButtonLocationOrderKind.values()) System.out.println(c);
public static AbstractCommandButton.CommandButtonLocationOrderKind 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 null