public enum MatchingBehavior extends Enum<MatchingBehavior>
Enum Constant and Description |
---|
EXACT_ID_MATCHING
ID Matching: Records in entities using ID Matching are matched if they
have the same IDs.
|
FUZZY_MATCHING
Fuzzy Matching: Records in entities using Fuzzy Matching are matched
using a SemQL expression defined in a matcher.
(Fuzzy Matching was formerly known as SDPK) |
Modifier and Type | Method and Description |
---|---|
static MatchingBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchingBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchingBehavior EXACT_ID_MATCHING
public static final MatchingBehavior FUZZY_MATCHING
public static MatchingBehavior[] values()
for (MatchingBehavior c : MatchingBehavior.values()) System.out.println(c);
public static MatchingBehavior 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 © 2016. All Rights Reserved.