public static enum Enums.ShadeType extends java.lang.Enum<Enums.ShadeType>
Enum Constant and Description |
---|
ABOVE
Shade above a line or path.
|
BELOW
Shade below a line or path.
|
BOTH
Shade above and below a line or path.
|
NONE
No shading.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Enums.ShadeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Enums.ShadeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Enums.ShadeType NONE
public static final Enums.ShadeType ABOVE
public static final Enums.ShadeType BELOW
public static final Enums.ShadeType BOTH
public static Enums.ShadeType[] values()
for (Enums.ShadeType c : Enums.ShadeType.values()) System.out.println(c);
public static Enums.ShadeType 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 toString()
toString
in class java.lang.Enum<Enums.ShadeType>