facets.facet
Enum FacetFactory.ToolkitType

java.lang.Object
  extended by java.lang.Enum<FacetFactory.ToolkitType>
      extended by facets.facet.FacetFactory.ToolkitType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FacetFactory.ToolkitType>
Enclosing class:
FacetFactory

public static enum FacetFactory.ToolkitType
extends java.lang.Enum<FacetFactory.ToolkitType>

Possible widget toolkits and look-and-feels.


Enum Constant Summary
SWING
           
SWING_SYSTEM
           
SWT
           
 
Method Summary
 java.lang.String toString()
           
static FacetFactory.ToolkitType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FacetFactory.ToolkitType[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SWING

public static final FacetFactory.ToolkitType SWING

SWING_SYSTEM

public static final FacetFactory.ToolkitType SWING_SYSTEM

SWT

public static final FacetFactory.ToolkitType SWT
Method Detail

values

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

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

valueOf

public static FacetFactory.ToolkitType 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
java.lang.NullPointerException - if the argument is null

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<FacetFactory.ToolkitType>