public enum ArrowType extends Enum<ArrowType>
| Enum Constant and Description |
|---|
box |
crow |
diamond |
dot |
ediamond |
empty |
halfopen |
inv |
invdot |
invempty |
invodot |
none |
normal |
obox |
odiamond |
odot |
open |
tee |
vee |
| Modifier and Type | Method and Description |
|---|---|
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 normal
public static final ArrowType inv
public static final ArrowType dot
public static final ArrowType invdot
public static final ArrowType odot
public static final ArrowType invodot
public static final ArrowType none
public static final ArrowType tee
public static final ArrowType empty
public static final ArrowType invempty
public static final ArrowType diamond
public static final ArrowType odiamond
public static final ArrowType ediamond
public static final ArrowType crow
public static final ArrowType box
public static final ArrowType obox
public static final ArrowType open
public static final ArrowType halfopen
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 nullCopyright © 2013. All Rights Reserved.