|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<MaterialState.ColorMaterial>
com.jme.scene.state.MaterialState.ColorMaterial
public static enum MaterialState.ColorMaterial
Enum Constant Summary | |
---|---|
Ambient
Geometry colors determine material ambient color. |
|
AmbientAndDiffuse
Geometry colors determine material ambient and diffuse colors. |
|
Diffuse
Geometry colors determine material diffuse color. |
|
Emissive
Geometry colors determine material emissive color. |
|
None
Geometry colors are ignored. |
|
Specular
Geometry colors determine material specular colors. |
Method Summary | |
---|---|
static MaterialState.ColorMaterial |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static MaterialState.ColorMaterial[] |
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 |
---|
public static final MaterialState.ColorMaterial None
public static final MaterialState.ColorMaterial Ambient
public static final MaterialState.ColorMaterial Diffuse
public static final MaterialState.ColorMaterial AmbientAndDiffuse
public static final MaterialState.ColorMaterial Specular
public static final MaterialState.ColorMaterial Emissive
Method Detail |
---|
public static MaterialState.ColorMaterial[] values()
for (MaterialState.ColorMaterial c : MaterialState.ColorMaterial.values()) System.out.println(c);
public static MaterialState.ColorMaterial 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |