public enum ArrowheadStyle extends java.lang.Enum<ArrowheadStyle>
| Enum Constant and Description |
|---|
Diamond
Specifies a diamond-shaped arrow.
|
None
Specifies no arrowhead.
|
Open
Specifies an open arrow.
|
Oval
Specifies an oval-shaped arrow.
|
Stealth
Specifies a stealth-shaped arrow.
|
Triangle
Specifies a triangular arrow.
|
| Modifier and Type | Method and Description |
|---|---|
static ArrowheadStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ArrowheadStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrowheadStyle None
public static final ArrowheadStyle Triangle
public static final ArrowheadStyle Open
public static final ArrowheadStyle Stealth
public static final ArrowheadStyle Diamond
public static final ArrowheadStyle Oval
public static ArrowheadStyle[] values()
for (ArrowheadStyle c : ArrowheadStyle.values()) System.out.println(c);
public static ArrowheadStyle 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