public enum TransparencyConstants extends Enum<TransparencyConstants>
Enum Constant and Description |
---|
HALF_BRIGHT |
OPAQUE |
TRANSPARENT |
UNDEFINED_TRANSPARENCY |
Modifier and Type | Method and Description |
---|---|
static TransparencyConstants |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransparencyConstants[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransparencyConstants TRANSPARENT
public static final TransparencyConstants OPAQUE
public static final TransparencyConstants HALF_BRIGHT
public static final TransparencyConstants UNDEFINED_TRANSPARENCY
public static TransparencyConstants[] values()
for (TransparencyConstants c : TransparencyConstants.values()) System.out.println(c);
public static TransparencyConstants valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright 2009-2012 Micro Focus. All Rights Reserved.