public static enum AbstractCommandButton.CommandButtonLocationOrderKind extends java.lang.Enum<AbstractCommandButton.CommandButtonLocationOrderKind>
Enum Constant | 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 | Description |
---|---|---|
static AbstractCommandButton.CommandButtonLocationOrderKind |
valueOf(java.lang.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(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