public static enum Gradient.GradientDirection extends java.lang.Enum<Gradient.GradientDirection>
Enum Constant and Description |
---|
DIAGONAL
The diagonal.
|
HORIZONTAL
The horizontal.
|
VERTICAL
The vertical.
|
Modifier and Type | Method and Description |
---|---|
static Gradient.GradientDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Gradient.GradientDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Gradient.GradientDirection DIAGONAL
public static final Gradient.GradientDirection HORIZONTAL
public static final Gradient.GradientDirection VERTICAL
public static Gradient.GradientDirection[] values()
for (Gradient.GradientDirection c : Gradient.GradientDirection.values()) System.out.println(c);
public static Gradient.GradientDirection 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