|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<LinkerMode> opennlp.tools.coref.LinkerMode
public enum LinkerMode
Enumeration of modes in which a linker can run.
Enum Constant Summary | |
---|---|
EVAL
Evaluation mode, used to evaluate identifed coreference relationships based on annotated text. |
|
SIM
Training mode, used to learn coreference relationships in annotated text. |
|
TEST
Testing mode, used to identify coreference relationships in un-annotated text. |
|
TRAIN
Training mode, used to learn coreference relationships in annotated text. |
Method Summary | |
---|---|
static LinkerMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static LinkerMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final LinkerMode TEST
public static final LinkerMode TRAIN
public static final LinkerMode EVAL
public static final LinkerMode SIM
Method Detail |
---|
public static LinkerMode[] values()
for (LinkerMode c : LinkerMode.values()) System.out.println(c);
public static LinkerMode valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |