public static enum BabelfyParameters.MatchingType extends java.lang.Enum<BabelfyParameters.MatchingType>
| Enum Constant and Description |
|---|
EXACT_MATCHING
Only exact matches are considered for disambiguation
|
PARTIAL_MATCHING
Both exact and partial matches (e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static BabelfyParameters.MatchingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BabelfyParameters.MatchingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BabelfyParameters.MatchingType EXACT_MATCHING
public static final BabelfyParameters.MatchingType PARTIAL_MATCHING
public static BabelfyParameters.MatchingType[] values()
for (BabelfyParameters.MatchingType c : BabelfyParameters.MatchingType.values()) System.out.println(c);
public static BabelfyParameters.MatchingType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null