Package com.cmobilecom.af.session
Enum StatisticsProperty.Aggregate
- java.lang.Object
-
- java.lang.Enum<StatisticsProperty.Aggregate>
-
- com.cmobilecom.af.session.StatisticsProperty.Aggregate
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StatisticsProperty.Aggregate>
- Enclosing class:
- StatisticsProperty
public static enum StatisticsProperty.Aggregate extends java.lang.Enum<StatisticsProperty.Aggregate>
Aggregate
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StatisticsProperty.Aggregate
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StatisticsProperty.Aggregate[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUM
public static final StatisticsProperty.Aggregate SUM
sum
-
AVG
public static final StatisticsProperty.Aggregate AVG
average
-
-
Method Detail
-
values
public static StatisticsProperty.Aggregate[] 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 (StatisticsProperty.Aggregate c : StatisticsProperty.Aggregate.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StatisticsProperty.Aggregate valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-