public enum GradientFillType extends java.lang.Enum<GradientFillType>
| Enum Constant and Description |
|---|
Linear
Specifies that this gradient fill is of linear gradient type.
|
None
Specifies no gradient fill.
|
Path
Specifies that this gradient fill is of path gradient type.
|
| Modifier and Type | Method and Description |
|---|---|
static GradientFillType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GradientFillType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GradientFillType None
public static final GradientFillType Linear
public static final GradientFillType Path
public static GradientFillType[] values()
for (GradientFillType c : GradientFillType.values()) System.out.println(c);
public static GradientFillType 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