standup.clouds
Enum CloudButton.LineMode

java.lang.Object
  extended by java.lang.Enum<CloudButton.LineMode>
      extended by standup.clouds.CloudButton.LineMode
All Implemented Interfaces:
Serializable, Comparable<CloudButton.LineMode>
Enclosing class:
CloudButton

public static enum CloudButton.LineMode
extends Enum<CloudButton.LineMode>


Enum Constant Summary
LEADING
           
NONE
           
TRAILING
           
 
Method Summary
static CloudButton.LineMode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CloudButton.LineMode[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TRAILING

public static final CloudButton.LineMode TRAILING

LEADING

public static final CloudButton.LineMode LEADING

NONE

public static final CloudButton.LineMode NONE
Method Detail

values

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

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

valueOf

public static CloudButton.LineMode 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