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