us.ihmc.graphics3DAdapter
Enum Graphics3DBackgroundScaleMode

java.lang.Object
  extended by java.lang.Enum<Graphics3DBackgroundScaleMode>
      extended by us.ihmc.graphics3DAdapter.Graphics3DBackgroundScaleMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Graphics3DBackgroundScaleMode>

public enum Graphics3DBackgroundScaleMode
extends java.lang.Enum<Graphics3DBackgroundScaleMode>


Enum Constant Summary
SCALE_FIT_ALL
           
SCALE_FIT_MAX
           
SCALE_FIT_MIN
           
SCALE_NONE
           
SCALE_NONE_CENTER
           
SCALE_REPEAT
           
 
Method Summary
static Graphics3DBackgroundScaleMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Graphics3DBackgroundScaleMode[] 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

SCALE_NONE

public static final Graphics3DBackgroundScaleMode SCALE_NONE

SCALE_FIT_MIN

public static final Graphics3DBackgroundScaleMode SCALE_FIT_MIN

SCALE_FIT_MAX

public static final Graphics3DBackgroundScaleMode SCALE_FIT_MAX

SCALE_FIT_ALL

public static final Graphics3DBackgroundScaleMode SCALE_FIT_ALL

SCALE_REPEAT

public static final Graphics3DBackgroundScaleMode SCALE_REPEAT

SCALE_NONE_CENTER

public static final Graphics3DBackgroundScaleMode SCALE_NONE_CENTER
Method Detail

values

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

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

valueOf

public static Graphics3DBackgroundScaleMode 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