public static enum DepTree.Elem extends java.lang.Enum<DepTree.Elem>
| Enum Constant and Description |
|---|
ARROWLINE1 |
ARROWLINE2 |
DOT |
HIDDENBOX |
HIDDENDOT |
HIDDENLINE |
LINE |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static DepTree.Elem |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DepTree.Elem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DepTree.Elem LINE
public static final DepTree.Elem TEXT
public static final DepTree.Elem DOT
public static final DepTree.Elem HIDDENLINE
public static final DepTree.Elem HIDDENBOX
public static final DepTree.Elem HIDDENDOT
public static final DepTree.Elem ARROWLINE1
public static final DepTree.Elem ARROWLINE2
public static DepTree.Elem[] values()
for (DepTree.Elem c : DepTree.Elem.values()) System.out.println(c);
public static DepTree.Elem 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