public enum EnumAggregationType extends Enum<EnumAggregationType>
Enum Constant and Description |
---|
ALL
Select all values.
|
ANY
Select any single value.
|
AVG
Compute average.
|
BEST
Select value with highest quality.
|
BEST_SOURCE
Select value with the highest calculated quality of its source.
|
CONCAT
Return all values concatenated.
|
LATEST
Select newest value.
|
LONGEST
Select longest value.
|
MAX
Select maximum.
|
MEDIAN
Select median.
|
MIN
Select minimum.
|
NONE
No aggregation (similar to ALL without implicit Conflict Resolution.
|
SHORTEST
Select shortest value.
|
TOPC
Select C best values, C is cardinality of the respective property.
|
Modifier and Type | Method and Description |
---|---|
static EnumAggregationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumAggregationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumAggregationType ANY
public static final EnumAggregationType ALL
public static final EnumAggregationType BEST
public static final EnumAggregationType LATEST
public static final EnumAggregationType BEST_SOURCE
public static final EnumAggregationType TOPC
public static final EnumAggregationType MAX
public static final EnumAggregationType MIN
public static final EnumAggregationType AVG
public static final EnumAggregationType MEDIAN
public static final EnumAggregationType CONCAT
public static final EnumAggregationType SHORTEST
public static final EnumAggregationType LONGEST
public static final EnumAggregationType NONE
public static EnumAggregationType[] values()
for (EnumAggregationType c : EnumAggregationType.values()) System.out.println(c);
public static EnumAggregationType 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 © 2013. All Rights Reserved.