public enum GlassEffectType extends java.lang.Enum<GlassEffectType>
GlassEffect
node effect.Enum Constant and Description |
---|
Type1
Indicates a glass effect with soft radial glow at the bottom and
a sharp reflection at the top.
|
Type2
Indicates a glass effect with linear glow at the bottom and sharp
reflection at the top.
|
Type3
Indicates a glass effect with radial glow at the bottom and smooth
reflection and emphasized outline at the top.
|
Type4
Indicates a glass effect with sharp reflection at the top and soft
glow at the left and right sides.
|
Modifier and Type | Method and Description |
---|---|
static GlassEffectType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GlassEffectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlassEffectType Type1
public static final GlassEffectType Type2
public static final GlassEffectType Type3
public static final GlassEffectType Type4
public static GlassEffectType[] values()
for (GlassEffectType c : GlassEffectType.values()) System.out.println(c);
public static GlassEffectType 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