public enum FuzzyMatchingStep extends java.lang.Enum<FuzzyMatchingStep>
Enum Constant and Description |
---|
DELETION
An element was removed from the secondary value
|
INSERTION
An empty space was inserted into the main value
|
MATCH
The two elements where the same
|
SUBSTITUTION
One element was copied over the other
|
Modifier and Type | Method and Description |
---|---|
static FuzzyMatchingStep |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FuzzyMatchingStep[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FuzzyMatchingStep MATCH
public static final FuzzyMatchingStep SUBSTITUTION
public static final FuzzyMatchingStep INSERTION
public static final FuzzyMatchingStep DELETION
public static FuzzyMatchingStep[] values()
for (FuzzyMatchingStep c : FuzzyMatchingStep.values()) System.out.println(c);
public static FuzzyMatchingStep 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