| Enum Constant and Description |
|---|
end
Fill the area from the top X axis
|
nofill
Does not fill any area
|
origin
Fill the area from 0 axis to top or bottom, depending on value.
Default. |
start
Fill the area from the botton X axis
|
| Modifier and Type | Method and Description |
|---|---|
static Fill |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Fill[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Fill start
public static final Fill end
public static final Fill origin
public static final Fill nofill
public static Fill[] values()
for (Fill c : Fill.values()) System.out.println(c);
public static Fill 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