public enum TextureMapping extends java.lang.Enum<TextureMapping>
VertexElementUV
Describes which kind of texture mapping is used.Enum Constant and Description |
---|
AMBIENT
Ambient maps
|
BUMP
Bump maps
|
DIFFUSE
Diffuse maps
|
DISPLACEMENT
Displacement maps
|
EMISSIVE
Emissive maps
|
GLOW
Glow maps
|
NORMAL
Normal maps
|
OPACITY
Opacity maps
|
REFLECTION
Reflection maps
|
SHADOW
Shadow maps
|
SHININESS
Shininess maps
|
SPECULAR
Specular maps
|
Modifier and Type | Method and Description |
---|---|
static TextureMapping |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TextureMapping[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextureMapping AMBIENT
public static final TextureMapping EMISSIVE
public static final TextureMapping DIFFUSE
public static final TextureMapping OPACITY
public static final TextureMapping BUMP
public static final TextureMapping NORMAL
public static final TextureMapping SPECULAR
public static final TextureMapping GLOW
public static final TextureMapping REFLECTION
public static final TextureMapping SHADOW
public static final TextureMapping SHININESS
public static final TextureMapping DISPLACEMENT
public static TextureMapping[] values()
for (TextureMapping c : TextureMapping.values()) System.out.println(c);
public static TextureMapping 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 null