public enum ArrowType extends Enum<ArrowType>
See: http://www.graphviz.org/doc/info/arrows.html
Enum Constant and Description |
---|
BOX |
BOX_OPEN |
CROW |
DIAMOND |
DIAMOND_OPEN |
DOT |
DOT_OPEN |
INVERTED |
INVERTED_OPEN |
NONE |
NORMAL |
NORMAL_OPEN |
TEE |
VEE |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static ArrowType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArrowType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrowType BOX
public static final ArrowType BOX_OPEN
public static final ArrowType CROW
public static final ArrowType DIAMOND
public static final ArrowType DIAMOND_OPEN
public static final ArrowType DOT
public static final ArrowType DOT_OPEN
public static final ArrowType INVERTED
public static final ArrowType INVERTED_OPEN
public static final ArrowType NONE
public static final ArrowType NORMAL
public static final ArrowType NORMAL_OPEN
public static final ArrowType TEE
public static final ArrowType VEE
public static ArrowType[] values()
for (ArrowType c : ArrowType.values()) System.out.println(c);
public static ArrowType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null