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