org.proteinshader.structure.enums
Enum VisibilityEnum
java.lang.Object
java.lang.Enum<VisibilityEnum>
org.proteinshader.structure.enums.VisibilityEnum
- All Implemented Interfaces:
- Serializable, Comparable<VisibilityEnum>
public enum VisibilityEnum
- extends Enum<VisibilityEnum>
Provides an enumeration to specify if a Drawable object is opaque,
translucent, or invisible.
Method Summary |
static VisibilityEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static VisibilityEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
OPAQUE
public static final VisibilityEnum OPAQUE
TRANSLUCENT
public static final VisibilityEnum TRANSLUCENT
INVISIBLE
public static final VisibilityEnum INVISIBLE
values
public static final VisibilityEnum[] 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(VisibilityEnum c : VisibilityEnum.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static VisibilityEnum 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
Copyright © 2007-2008