public static enum LineStyle.LineJoinStyle extends Enum<LineStyle.LineJoinStyle>
Enum Constant and Description |
---|
BEVEL
Line joins are flat.
|
MITER
Line joins are pointed.
|
ROUND
Line joins are rounded.
|
Modifier and Type | Method and Description |
---|---|
static LineStyle.LineJoinStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineStyle.LineJoinStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineStyle.LineJoinStyle BEVEL
public static final LineStyle.LineJoinStyle MITER
public static final LineStyle.LineJoinStyle ROUND
public static LineStyle.LineJoinStyle[] values()
for (LineStyle.LineJoinStyle c : LineStyle.LineJoinStyle.values()) System.out.println(c);
public static LineStyle.LineJoinStyle 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