com.threerings.opengl.model.config
Enum ArticulatedConfig.BillboardRotationX

java.lang.Object
  extended by java.lang.Enum<ArticulatedConfig.BillboardRotationX>
      extended by com.threerings.opengl.model.config.ArticulatedConfig.BillboardRotationX
All Implemented Interfaces:
Serializable, Comparable<ArticulatedConfig.BillboardRotationX>
Enclosing class:
ArticulatedConfig

public static enum ArticulatedConfig.BillboardRotationX
extends Enum<ArticulatedConfig.BillboardRotationX>

The options for billboard rotation about the x axis.


Enum Constant Summary
ALIGN_TO_VIEW
           
FACE_VIEWER
           
NONE
           
 
Method Summary
static ArticulatedConfig.BillboardRotationX valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ArticulatedConfig.BillboardRotationX[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ALIGN_TO_VIEW

public static final ArticulatedConfig.BillboardRotationX ALIGN_TO_VIEW

FACE_VIEWER

public static final ArticulatedConfig.BillboardRotationX FACE_VIEWER

NONE

public static final ArticulatedConfig.BillboardRotationX NONE
Method Detail

values

public static ArticulatedConfig.BillboardRotationX[] 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 (ArticulatedConfig.BillboardRotationX c : ArticulatedConfig.BillboardRotationX.values())
    System.out.println(c);

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

valueOf

public static ArticulatedConfig.BillboardRotationX valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2011. All Rights Reserved.