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