maspack.render
Enum RenderProps.Shading
java.lang.Object
java.lang.Enum<RenderProps.Shading>
maspack.render.RenderProps.Shading
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<RenderProps.Shading>
- Enclosing class:
- RenderProps
public static enum RenderProps.Shading
- extends java.lang.Enum<RenderProps.Shading>
Method Summary |
static RenderProps.Shading |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static RenderProps.Shading[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
FLAT
public static final RenderProps.Shading FLAT
GOURARD
public static final RenderProps.Shading GOURARD
PHONG
public static final RenderProps.Shading PHONG
NONE
public static final RenderProps.Shading NONE
values
public static RenderProps.Shading[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (RenderProps.Shading c : RenderProps.Shading.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static RenderProps.Shading valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null