public static enum Comprehension.PathType extends java.lang.Enum<Comprehension.PathType>
Enum Constant and Description |
---|
Classification
Traverse classification variables.
|
Meaning
Traverse words and meanings only.
|
Verb
Traverse words, meaning, or verb variables.
|
Modifier and Type | Method and Description |
---|---|
static Comprehension.PathType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Comprehension.PathType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Comprehension.PathType Meaning
public static final Comprehension.PathType Verb
public static final Comprehension.PathType Classification
public static Comprehension.PathType[] values()
for (Comprehension.PathType c : Comprehension.PathType.values()) System.out.println(c);
public static Comprehension.PathType 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