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