public enum AggregationMode extends java.lang.Enum<AggregationMode> implements com.haulmont.chile.core.datatypes.impl.EnumClass<java.lang.String>
Modifier and Type | Method and Description |
---|---|
static AggregationMode |
fromId(java.lang.String id) |
java.lang.String |
getId() |
static AggregationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AggregationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationMode COUNT
public static final AggregationMode COUNT_UNIQUE_VALUES
public static final AggregationMode LIST_UNIQUE_VALUES
public static final AggregationMode SUM
public static final AggregationMode INTEGER_SUM
public static final AggregationMode AVERAGE
public static final AggregationMode MINIMUM
public static final AggregationMode MAXIMUM
public static final AggregationMode SUM_OVER_SUM
public static final AggregationMode UPPER_BOUND_80
public static final AggregationMode LOWER_BOUND_80
public static final AggregationMode SUM_AS_FRACTION_OF_TOTAL
public static final AggregationMode SUM_AS_FRACTION_OF_ROWS
public static final AggregationMode SUM_AS_FRACTION_OF_COLUMNS
public static final AggregationMode COUNT_AS_FRACTION_OF_TOTAL
public static final AggregationMode COUNT_AS_FRACTION_OF_ROWS
public static final AggregationMode COUNT_AS_FRACTION_OF_COLUMNS
public static AggregationMode[] values()
for (AggregationMode c : AggregationMode.values()) System.out.println(c);
public static AggregationMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getId()
getId
in interface com.haulmont.chile.core.datatypes.impl.EnumClass<java.lang.String>
public static AggregationMode fromId(java.lang.String id)