com.jme.scene
Enum Skybox.Face

java.lang.Object
  extended by java.lang.Enum<Skybox.Face>
      extended by com.jme.scene.Skybox.Face
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Skybox.Face>
Enclosing class:
Skybox

public static enum Skybox.Face
extends java.lang.Enum<Skybox.Face>


Enum Constant Summary
Down
          The -Y side of the skybox.
East
          The -X side of the skybox.
North
          The +Z side of the skybox.
South
          The -Z side of the skybox.
Up
          The +Y side of the skybox.
West
          The +X side of the skybox.
 
Method Summary
static Skybox.Face valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Skybox.Face[] 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

North

public static final Skybox.Face North
The +Z side of the skybox.


South

public static final Skybox.Face South
The -Z side of the skybox.


East

public static final Skybox.Face East
The -X side of the skybox.


West

public static final Skybox.Face West
The +X side of the skybox.


Up

public static final Skybox.Face Up
The +Y side of the skybox.


Down

public static final Skybox.Face Down
The -Y side of the skybox.

Method Detail

values

public static Skybox.Face[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Skybox.Face c : Skybox.Face.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Skybox.Face valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null