public enum StandardMatchMode extends Enum<StandardMatchMode> implements MatchMode
Enum Constant and Description |
---|
CUSTOM
No Match mode is applied; instead the FieldsMatching object in the preferences can be used to
specify what input fields must match the candidate for candidate to be returned.
|
EXACT
Exact Match mode, which uses the strictest matching criteria.
|
RELAXED
Relaxed Match mode, which uses very loose matching criteria.
|
STANDARD
Standard Match mode.
|
Modifier and Type | Method and Description |
---|---|
static StandardMatchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StandardMatchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardMatchMode RELAXED
public static final StandardMatchMode EXACT
public static final StandardMatchMode STANDARD
public static final StandardMatchMode CUSTOM
public static StandardMatchMode[] values()
for (StandardMatchMode c : StandardMatchMode.values()) System.out.println(c);
public static StandardMatchMode 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 © 2024. All rights reserved.