public enum ArrowheadLength extends java.lang.Enum<ArrowheadLength>
| Enum Constant and Description |
|---|
Long
Specifies a long arrow.
|
Medium
Specifies a medium arrow.
|
Short
Specifies a short arrow.
|
| Modifier and Type | Method and Description |
|---|---|
static ArrowheadLength |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ArrowheadLength[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrowheadLength Short
public static final ArrowheadLength Medium
public static final ArrowheadLength Long
public static ArrowheadLength[] values()
for (ArrowheadLength c : ArrowheadLength.values()) System.out.println(c);
public static ArrowheadLength 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