Package de.caluga.morphium.aggregation
Enum Aggregator.BucketGranularity
- java.lang.Object
-
- java.lang.Enum<Aggregator.BucketGranularity>
-
- de.caluga.morphium.aggregation.Aggregator.BucketGranularity
-
- All Implemented Interfaces:
Serializable,Comparable<Aggregator.BucketGranularity>
- Enclosing interface:
- Aggregator<T,R>
public static enum Aggregator.BucketGranularity extends Enum<Aggregator.BucketGranularity>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static Aggregator.BucketGranularityvalueOf(String name)Returns the enum constant of this type with the specified name.static Aggregator.BucketGranularity[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
R5
public static final Aggregator.BucketGranularity R5
-
R10
public static final Aggregator.BucketGranularity R10
-
R20
public static final Aggregator.BucketGranularity R20
-
R40
public static final Aggregator.BucketGranularity R40
-
R80
public static final Aggregator.BucketGranularity R80
-
E6
public static final Aggregator.BucketGranularity E6
-
E12
public static final Aggregator.BucketGranularity E12
-
E24
public static final Aggregator.BucketGranularity E24
-
E48
public static final Aggregator.BucketGranularity E48
-
E96
public static final Aggregator.BucketGranularity E96
-
E192
public static final Aggregator.BucketGranularity E192
-
POWERSOF2
public static final Aggregator.BucketGranularity POWERSOF2
-
SERIES_125
public static final Aggregator.BucketGranularity SERIES_125
-
-
Method Detail
-
values
public static Aggregator.BucketGranularity[] 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 (Aggregator.BucketGranularity c : Aggregator.BucketGranularity.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Aggregator.BucketGranularity 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
-
getValue
public String getValue()
-
-