edu.cmu.sun.folds
Enum LayoutComponent.Type

java.lang.Object
  extended by java.lang.Enum<LayoutComponent.Type>
      extended by edu.cmu.sun.folds.LayoutComponent.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LayoutComponent.Type>
Enclosing class:
LayoutComponent

public static enum LayoutComponent.Type
extends java.lang.Enum<LayoutComponent.Type>


Enum Constant Summary
BOTTOM_FOLD
           
FOLD
           
LIST
           
TOP_FOLD
           
UNSPECIFIED
           
 
Method Summary
static LayoutComponent.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LayoutComponent.Type[] 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

TOP_FOLD

public static final LayoutComponent.Type TOP_FOLD

FOLD

public static final LayoutComponent.Type FOLD

BOTTOM_FOLD

public static final LayoutComponent.Type BOTTOM_FOLD

LIST

public static final LayoutComponent.Type LIST

UNSPECIFIED

public static final LayoutComponent.Type UNSPECIFIED
Method Detail

values

public static final LayoutComponent.Type[] 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(LayoutComponent.Type c : LayoutComponent.Type.values())
        System.out.println(c);

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

valueOf

public static LayoutComponent.Type valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name