public enum ShadowStyle extends java.lang.Enum<ShadowStyle>
Enum Constant and Description |
---|
Fading
Display a fading shadow.
|
None
Do not display a shadow.
|
Solid
Display a solid shadow.
|
Modifier and Type | Method and Description |
---|---|
static ShadowStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShadowStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShadowStyle None
public static final ShadowStyle Solid
public static final ShadowStyle Fading
Note: If this style is not supported on a specific platform, shadows will be displayed solid.
public static ShadowStyle[] values()
for (ShadowStyle c : ShadowStyle.values()) System.out.println(c);
public static ShadowStyle 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