|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FLCType>
com.semarchy.mdm.runtime.model.logical.FLCType
public enum FLCType
Type of Fiel-Level-Consolidation strategies
Enum Constant Summary | |
---|---|
ANY_VALUE
Any value: The consolidation will pick a random master record |
|
CUSTOM_RANKING
Custom Ranking: The consolidation will pick the master record based on a ranking expression |
|
LARGEST_VALUE
Largest value: The consolidation will pick the master record having the largest value in the given field |
|
LONGEST_VALUE
Longest value: The consolidation will pick the master record having the longest value in the given field |
|
MOST_FREQ_VALUE
Most frequent value: The consolidation will pick the master record having the most frequent value in the given field |
|
PREFERRED_SOURCE
Prefered Source: The consolidation will pick the value from the master record having the highest publishers ranking |
|
SHORTEST_VALUE
Shortest value: The consolidation will pick the master record having the shortest value in the given field |
|
SMALLEST_VALUE
Smallest value: The consolidation will pick the master record having the smallest value in the given field |
Method Summary | |
---|---|
static FLCType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FLCType[] |
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 |
---|
public static final FLCType ANY_VALUE
public static final FLCType CUSTOM_RANKING
public static final FLCType LARGEST_VALUE
public static final FLCType LONGEST_VALUE
public static final FLCType MOST_FREQ_VALUE
public static final FLCType PREFERRED_SOURCE
public static final FLCType SHORTEST_VALUE
public static final FLCType SMALLEST_VALUE
Method Detail |
---|
public static FLCType[] values()
for (FLCType c : FLCType.values()) System.out.println(c);
public static FLCType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |