public enum LinkerMode extends Enum<LinkerMode>
| Enum Constant and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
public static final LinkerMode TEST
public static final LinkerMode TRAIN
public static final LinkerMode EVAL
public static final LinkerMode SIM
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 nameNullPointerException - if the argument is nullCopyright © 2019 The Apache Software Foundation. All rights reserved.