public static enum LineStyle.LineEndStyle extends Enum<LineStyle.LineEndStyle>
Enum Constant and Description |
---|
BUTT
Square line ending with edge against the end data points.
|
ROUND
Round end shape.
|
SQUARE
Square line ending.
|
Modifier and Type | Method and Description |
---|---|
static LineStyle.LineEndStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineStyle.LineEndStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineStyle.LineEndStyle BUTT
public static final LineStyle.LineEndStyle ROUND
public static final LineStyle.LineEndStyle SQUARE
public static LineStyle.LineEndStyle[] values()
for (LineStyle.LineEndStyle c : LineStyle.LineEndStyle.values()) System.out.println(c);
public static LineStyle.LineEndStyle valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null