public enum LineJoinType extends java.lang.Enum<LineJoinType>
Enum Constant and Description |
---|
BEVEL
Sets the display of lines when joining to bevel.
|
MITER
Sets the display of lines when joining to miter.
|
ROUND
Default value.
|
Modifier and Type | Method and Description |
---|---|
static LineJoinType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LineJoinType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineJoinType MITER
public static final LineJoinType BEVEL
public static final LineJoinType ROUND
public static LineJoinType[] values()
for (LineJoinType c : LineJoinType.values()) System.out.println(c);
public static LineJoinType 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