rcf.core.framework.component
Enum DynamicBound.GUIType

java.lang.Object
  extended by java.lang.Enum<DynamicBound.GUIType>
      extended by rcf.core.framework.component.DynamicBound.GUIType
All Implemented Interfaces:
Serializable, Comparable<DynamicBound.GUIType>
Enclosing interface:
DynamicBound

public static enum DynamicBound.GUIType
extends Enum<DynamicBound.GUIType>

TODO: Javadoc

TODO: Unit tests, Code review, Javadoc review, Seal/Finalize TODO: equals, hashCode, toString

Version:
$Revision: 1.2 $
Author:
Greg Gibeling

Enum Constant Summary
Flat
           
Popup
           
Tabbed
           
Tree
           
 
Method Summary
static DynamicBound.GUIType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DynamicBound.GUIType[] 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

Flat

public static final DynamicBound.GUIType Flat

Tabbed

public static final DynamicBound.GUIType Tabbed

Tree

public static final DynamicBound.GUIType Tree

Popup

public static final DynamicBound.GUIType Popup
Method Detail

values

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

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

valueOf

public static DynamicBound.GUIType 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