public enum EnumShadowStyle extends java.lang.Enum<EnumShadowStyle>
| Enum Constant and Description |
|---|
NORMAL
NORMAL - the shadow is drawn on 1 side of the contour of the text object.
|
OFF
OFF - no shadow.
|
OUTLINED
OUTLINED - the shadow is drawn around the contour of the text object.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Returns the String value of this enum.
|
static EnumShadowStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumShadowStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumShadowStyle NORMAL
public static final EnumShadowStyle OUTLINED
public static final EnumShadowStyle OFF
public static EnumShadowStyle[] values()
for (EnumShadowStyle c : EnumShadowStyle.values()) System.out.println(c);
public static EnumShadowStyle 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 nullpublic java.lang.String getValue()