org.maltparser.core.feature.spec.reader
Enum ParReader.DataStructures
java.lang.Object
java.lang.Enum<ParReader.DataStructures>
org.maltparser.core.feature.spec.reader.ParReader.DataStructures
- All Implemented Interfaces:
- Serializable, Comparable<ParReader.DataStructures>
- Enclosing class:
- ParReader
public static enum ParReader.DataStructures
- extends Enum<ParReader.DataStructures>
STACK
public static final ParReader.DataStructures STACK
INPUT
public static final ParReader.DataStructures INPUT
LEFTCONTEXT
public static final ParReader.DataStructures LEFTCONTEXT
RIGHTCONTEXT
public static final ParReader.DataStructures RIGHTCONTEXT
values
public static ParReader.DataStructures[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (ParReader.DataStructures c : ParReader.DataStructures.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ParReader.DataStructures valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright 2007-2010 Johan Hall, Jens Nilsson and Joakim Nivre.