public enum ExtractionMethod extends Enum<ExtractionMethod>
| Enum Constant and Description |
|---|
acceptGazetteer
The gazetteer based entity extractor.
|
acceptRegex
The regular expression based entity extractor.
|
joiner
The entity joiner, which joins adjacent entities.
|
redactor
The entity redactor, which disambiguates overlapping entities.
|
rejectGazetteer
The gazetteer based entity rejector.
|
rejectRegex
The regular expression based entity rejector.
|
statistical
The statistical entity extractor.
|
| Modifier and Type | Method and Description |
|---|---|
static ExtractionMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtractionMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtractionMethod statistical
public static final ExtractionMethod acceptGazetteer
public static final ExtractionMethod acceptRegex
public static final ExtractionMethod rejectGazetteer
public static final ExtractionMethod rejectRegex
public static final ExtractionMethod redactor
public static final ExtractionMethod joiner
public static ExtractionMethod[] values()
for (ExtractionMethod c : ExtractionMethod.values()) System.out.println(c);
public static ExtractionMethod 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 © 2014–2016 Basis Technology Corp.. All rights reserved.