Enum Class AbstractCommandButton.CommandButtonLocationOrderKind
java.lang.Object
java.lang.Enum<AbstractCommandButton.CommandButtonLocationOrderKind>
org.pushingpixels.flamingo.api.common.AbstractCommandButton.CommandButtonLocationOrderKind
- All Implemented Interfaces:
Serializable
,Comparable<AbstractCommandButton.CommandButtonLocationOrderKind>
,Constable
- Enclosing class:
AbstractCommandButton
public static enum AbstractCommandButton.CommandButtonLocationOrderKind
extends Enum<AbstractCommandButton.CommandButtonLocationOrderKind>
Enumerates the available values for the location order kind. This is used
for buttons placed in command button strips or for buttons that need the
visuals of segmented strips.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ONLY
Indicates that this button is the only button in the strip. -
FIRST
Indicates that this button is the first button in the strip. -
MIDDLE
Indicates that this button is in the middle of the strip. -
LAST
Indicates that this button is the last button in the strip.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-