public static enum DuplicatesFinder.MatchType extends java.lang.Enum<DuplicatesFinder.MatchType>
Enum Constant and Description |
---|
EXACT |
FOLDED |
PARAMETRIZED |
Modifier and Type | Method and Description |
---|---|
static DuplicatesFinder.MatchType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DuplicatesFinder.MatchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DuplicatesFinder.MatchType EXACT
public static final DuplicatesFinder.MatchType PARAMETRIZED
public static final DuplicatesFinder.MatchType FOLDED
public static DuplicatesFinder.MatchType[] values()
for (DuplicatesFinder.MatchType c : DuplicatesFinder.MatchType.values()) System.out.println(c);
public static DuplicatesFinder.MatchType 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