Package adalid.core.enums
Enum ViewFieldAggregation
- java.lang.Object
-
- java.lang.Enum<ViewFieldAggregation>
-
- adalid.core.enums.ViewFieldAggregation
-
- All Implemented Interfaces:
Serializable,Comparable<ViewFieldAggregation>
public enum ViewFieldAggregation extends Enum<ViewFieldAggregation>
- Author:
- Jorge Campins
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVERAGEAVERAGE_DEVIATIONAVERAGE_DEVIATION_MINIMUM_MAXIMUMCOUNTCOUNT_MINIMUM_MAXIMUMDEVIATIONMAXIMUMMINIMUMMINIMUM_MAXIMUMSUMSUM_COUNT_AVERAGESUM_COUNT_AVERAGE_DEVIATION_MINIMUM_MAXIMUM
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetNameTag()intgetNumber()static ViewFieldAggregationvalueOf(String name)Returns the enum constant of this type with the specified name.static ViewFieldAggregation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COUNT
public static final ViewFieldAggregation COUNT
-
MINIMUM
public static final ViewFieldAggregation MINIMUM
-
MAXIMUM
public static final ViewFieldAggregation MAXIMUM
-
SUM
public static final ViewFieldAggregation SUM
-
AVERAGE
public static final ViewFieldAggregation AVERAGE
-
DEVIATION
public static final ViewFieldAggregation DEVIATION
-
COUNT_MINIMUM_MAXIMUM
public static final ViewFieldAggregation COUNT_MINIMUM_MAXIMUM
-
MINIMUM_MAXIMUM
public static final ViewFieldAggregation MINIMUM_MAXIMUM
-
SUM_COUNT_AVERAGE
public static final ViewFieldAggregation SUM_COUNT_AVERAGE
-
SUM_COUNT_AVERAGE_DEVIATION_MINIMUM_MAXIMUM
public static final ViewFieldAggregation SUM_COUNT_AVERAGE_DEVIATION_MINIMUM_MAXIMUM
-
AVERAGE_DEVIATION
public static final ViewFieldAggregation AVERAGE_DEVIATION
-
AVERAGE_DEVIATION_MINIMUM_MAXIMUM
public static final ViewFieldAggregation AVERAGE_DEVIATION_MINIMUM_MAXIMUM
-
-
Method Detail
-
values
public static ViewFieldAggregation[] 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 (ViewFieldAggregation c : ViewFieldAggregation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ViewFieldAggregation 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 nameNullPointerException- if the argument is null
-
getNumber
public int getNumber()
-
getNameTag
public String getNameTag()
-
-