public enum Transparency extends Enum<Transparency>
This class is Thread-Safe.
Enum Constant and Description |
---|
BITMASK
Bitmask.
|
OPAQUE
Opaque.
|
TRANSLUCENT
Translucent.
|
Modifier and Type | Method and Description |
---|---|
static Transparency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transparency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transparency OPAQUE
public static final Transparency BITMASK
public static final Transparency TRANSLUCENT
public static Transparency[] values()
for (Transparency c : Transparency.values()) System.out.println(c);
public static Transparency 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 © 2017 Byron 3D Games Studio. All rights reserved.