public enum ARGBPlane extends Enum<ARGBPlane>
Enum Constant and Description |
---|
ALPHA
Use Alpha plane
|
BLUE
Use Blue plane
|
GREEN
Use Green plane
|
RED
Use Red plane
|
Modifier and Type | Method and Description |
---|---|
static ARGBPlane |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ARGBPlane[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static ARGBPlane[] values()
for (ARGBPlane c : ARGBPlane.values()) System.out.println(c);
public static ARGBPlane 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 null