org.pushingpixels.flamingo.api.common
Enum AbstractCommandButton.CommandButtonLocationOrderKind

java.lang.Object
  extended by java.lang.Enum<AbstractCommandButton.CommandButtonLocationOrderKind>
      extended by org.pushingpixels.flamingo.api.common.AbstractCommandButton.CommandButtonLocationOrderKind
All Implemented Interfaces:
Serializable, Comparable<AbstractCommandButton.CommandButtonLocationOrderKind>
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.


Enum Constant Summary
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.
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ONLY

public static final AbstractCommandButton.CommandButtonLocationOrderKind ONLY
Indicates that this button is the only button in the strip.


FIRST

public static final AbstractCommandButton.CommandButtonLocationOrderKind FIRST
Indicates that this button is the first button in the strip.


MIDDLE

public static final AbstractCommandButton.CommandButtonLocationOrderKind MIDDLE
Indicates that this button is in the middle of the strip.


LAST

public static final AbstractCommandButton.CommandButtonLocationOrderKind LAST
Indicates that this button is the last button in the strip.

Method Detail

values

public static AbstractCommandButton.CommandButtonLocationOrderKind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (AbstractCommandButton.CommandButtonLocationOrderKind c : AbstractCommandButton.CommandButtonLocationOrderKind.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static AbstractCommandButton.CommandButtonLocationOrderKind valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
NullPointerException - if the argument is null