public static enum TextureCubeMap.Face extends java.lang.Enum<TextureCubeMap.Face>
Enum Constant and Description |
---|
NegativeX |
NegativeY |
NegativeZ |
PositiveX |
PositiveY |
PositiveZ |
Modifier and Type | Method and Description |
---|---|
static TextureCubeMap.Face |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TextureCubeMap.Face[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextureCubeMap.Face PositiveX
public static final TextureCubeMap.Face NegativeX
public static final TextureCubeMap.Face PositiveY
public static final TextureCubeMap.Face NegativeY
public static final TextureCubeMap.Face PositiveZ
public static final TextureCubeMap.Face NegativeZ
public static TextureCubeMap.Face[] values()
for (TextureCubeMap.Face c : TextureCubeMap.Face.values()) System.out.println(c);
public static TextureCubeMap.Face valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null