com.semarchy.mdm.runtime.model.logical
Enum MatchingBehavior

java.lang.Object
  extended by java.lang.Enum<MatchingBehavior>
      extended by com.semarchy.mdm.runtime.model.logical.MatchingBehavior
All Implemented Interfaces:
Serializable, Comparable<MatchingBehavior>

public enum MatchingBehavior
extends Enum<MatchingBehavior>


Enum Constant Summary
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)
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EXACT_ID_MATCHING

public static final MatchingBehavior EXACT_ID_MATCHING
ID Matching: Records in entities using ID Matching are matched if they have the same IDs.
This matching behavior is well suited when there is a true unique identifier for all the applications communicating with the MDM hub and for simple Data Entry use cases.\n(ID Matching was formerly known as UDPK)


FUZZY_MATCHING

public static final MatchingBehavior 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)

Method Detail

values

public static MatchingBehavior[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (MatchingBehavior c : MatchingBehavior.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static MatchingBehavior valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2015. All Rights Reserved.