public enum EffectParameterClass extends java.lang.Enum<EffectParameterClass>
Enum Constant and Description |
---|
Matrix
Constant is a matrix.
|
Object
Constant is either a texture, a shader, or a string.
|
Scalar
Constant is a scalar.
|
Struct
Constant is a structure.
|
Vector
Constant is a vector.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static EffectParameterClass |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EffectParameterClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EffectParameterClass Object
public static final EffectParameterClass Matrix
public static final EffectParameterClass Scalar
public static final EffectParameterClass Struct
public static final EffectParameterClass Vector
public static EffectParameterClass[] values()
for (EffectParameterClass c : EffectParameterClass.values()) System.out.println(c);
public static EffectParameterClass 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 namejava.lang.NullPointerException
- if the argument is nullpublic int getValue()