| Enum Constant and Description |
|---|
Gradient
Specifies the gradient fill.
|
Group
Specifies the group fill.
|
Patterned
Specifies the patterned fill.
|
Picture
Specifies the picture fill.
|
Solid
Specifies the solid fill.
|
Textured
Specifies the textured fill.
|
| Modifier and Type | Method and Description |
|---|---|
static FillType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FillType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FillType Solid
public static final FillType Patterned
public static final FillType Gradient
public static final FillType Textured
public static final FillType Picture
public static final FillType Group
public static FillType[] values()
for (FillType c : FillType.values()) System.out.println(c);
public static FillType 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