hmi.graphics.collada
Enum ParamValue.Type

java.lang.Object
  extended by java.lang.Enum<ParamValue.Type>
      extended by hmi.graphics.collada.ParamValue.Type
All Implemented Interfaces:
Serializable, Comparable<ParamValue.Type>
Enclosing class:
ParamValue

public static enum ParamValue.Type
extends Enum<ParamValue.Type>

Param types, like Sampler1D, ParamArray, ValueType etc.


Enum Constant Summary
ParamArray
           
Sampler1D
           
Sampler2D
           
Sampler3D
           
Surface
           
UserType
           
ValueType
           
 
Method Summary
static ParamValue.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ParamValue.Type[] 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

ValueType

public static final ParamValue.Type ValueType

UserType

public static final ParamValue.Type UserType

ParamArray

public static final ParamValue.Type ParamArray

Surface

public static final ParamValue.Type Surface

Sampler1D

public static final ParamValue.Type Sampler1D

Sampler2D

public static final ParamValue.Type Sampler2D

Sampler3D

public static final ParamValue.Type Sampler3D
Method Detail

values

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

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

valueOf

public static ParamValue.Type 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