public enum FLCType extends Enum<FLCType>
Enum Constant and Description |
---|
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
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 nameNullPointerException
- if the argument is nullCopyright © 2016. All Rights Reserved.