public enum CubeMapFace extends java.lang.Enum<CubeMapFace>
Enum Constant and Description |
---|
NegativeX
Negative x-face of the cube map.
|
NegativeY
Negative y-face of the cube map.
|
NegativeZ
Negative z-face of the cube map.
|
PositiveX
Positive x-face of the cube map.
|
PositiveY
Positive y-face of the cube map.
|
PositiveZ
Positive z-face of the cube map.
|
Modifier and Type | Method and Description |
---|---|
static CubeMapFace |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CubeMapFace[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CubeMapFace PositiveX
public static final CubeMapFace NegativeX
public static final CubeMapFace PositiveY
public static final CubeMapFace NegativeY
public static final CubeMapFace PositiveZ
public static final CubeMapFace NegativeZ
public static CubeMapFace[] values()
for (CubeMapFace c : CubeMapFace.values()) System.out.println(c);
public static CubeMapFace 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