chrriis.common
Enum UIUtils.TransparencyType

java.lang.Object
  extended by java.lang.Enum<UIUtils.TransparencyType>
      extended by chrriis.common.UIUtils.TransparencyType
All Implemented Interfaces:
Serializable, Comparable<UIUtils.TransparencyType>
Enclosing class:
UIUtils

public static enum UIUtils.TransparencyType
extends Enum<UIUtils.TransparencyType>


Enum Constant Summary
NOT_VISIBLE
           
OPAQUE
           
TRANSPARENT_WITH_OPAQUE_CHILDREN
           
 
Method Summary
static UIUtils.TransparencyType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static UIUtils.TransparencyType[] 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

OPAQUE

public static final UIUtils.TransparencyType OPAQUE

TRANSPARENT_WITH_OPAQUE_CHILDREN

public static final UIUtils.TransparencyType TRANSPARENT_WITH_OPAQUE_CHILDREN

NOT_VISIBLE

public static final UIUtils.TransparencyType NOT_VISIBLE
Method Detail

values

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

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

valueOf

public static UIUtils.TransparencyType 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