public static enum MaterialHelper.SpecularShader extends java.lang.Enum<MaterialHelper.SpecularShader>
| Enum Constant and Description |
|---|
BLINN |
COOKTORRENCE |
PHONG |
TOON |
WARDISO |
| Modifier and Type | Method and Description |
|---|---|
static MaterialHelper.SpecularShader |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MaterialHelper.SpecularShader[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MaterialHelper.SpecularShader COOKTORRENCE
public static final MaterialHelper.SpecularShader PHONG
public static final MaterialHelper.SpecularShader BLINN
public static final MaterialHelper.SpecularShader TOON
public static final MaterialHelper.SpecularShader WARDISO
public static MaterialHelper.SpecularShader[] values()
for (MaterialHelper.SpecularShader c : MaterialHelper.SpecularShader.values()) System.out.println(c);
public static MaterialHelper.SpecularShader 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