|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CubeMapFace>
Microsoft.Xna.Framework.Graphics.CubeMapFace
public enum CubeMapFace
Defines the faces of a cube map in the TextureCube class type.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |