Defines which edge is used to close a fill path for drawing lines.
TOP - Use the top edge of the plot.
BOTTOM - Use the bottom edge of the plot.
LEFT - (Not implemented) Use the left edge of the plot.
RIGHT - (Not implemented) Use the right edge of the plot.
DOMAIN_ORIGIN - (Not implemented) Use the domain origin line.
RANGE_ORIGIN - Use the range origin line.
Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (FillDirection c : FillDirection.values())
System.out.println(c);
Returns:
an array containing the constants of this enum type, in
the order they are declared
Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
Parameters:
name - the name of the enum constant to be returned.