public static enum SemanticGraphFactory.Mode extends Enum<SemanticGraphFactory.Mode>
Enum Constant and Description |
---|
BASIC |
CCPROCESSED
ccProcess: Whether to do processing of CC complements resulting from
collapsing.
|
COLLAPSED
collapse: Whether to do "collapsing" of pairs of dependencies into
single dependencies, e.g., for prepositions and conjunctions.
|
COLLAPSED_TREE |
Modifier and Type | Method and Description |
---|---|
static SemanticGraphFactory.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SemanticGraphFactory.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SemanticGraphFactory.Mode COLLAPSED_TREE
public static final SemanticGraphFactory.Mode COLLAPSED
public static final SemanticGraphFactory.Mode CCPROCESSED
collapse
is
true
.public static final SemanticGraphFactory.Mode BASIC
public static SemanticGraphFactory.Mode[] values()
for (SemanticGraphFactory.Mode c : SemanticGraphFactory.Mode.values()) System.out.println(c);
public static SemanticGraphFactory.Mode 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 null