public static enum Arrow.HeadStyle extends java.lang.Enum<Arrow.HeadStyle>
Enum Constant and Description |
---|
DRAFTING |
FAT_TRIANGLE |
THIN_TRIANGLE |
Modifier and Type | Method and Description |
---|---|
static Arrow.HeadStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Arrow.HeadStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Arrow.HeadStyle DRAFTING
public static final Arrow.HeadStyle FAT_TRIANGLE
public static final Arrow.HeadStyle THIN_TRIANGLE
public static Arrow.HeadStyle[] values()
for (Arrow.HeadStyle c : Arrow.HeadStyle.values()) System.out.println(c);
public static Arrow.HeadStyle 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