Enum AggregationType
- java.lang.Object
-
- java.lang.Enum<AggregationType>
-
- org.gcube.accounting.aggregator.aggregation.AggregationType
-
- All Implemented Interfaces:
Serializable,Comparable<AggregationType>
public enum AggregationType extends Enum<AggregationType>
- Author:
- Alessandro Pieve (ISTI - CNR), Luca Frosini (ISTI - CNR)
-
-
Field Summary
Fields Modifier and Type Field Description static StringDATE_SEPARATOR
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetCalendarField()DateFormatgetDateFormat()StringgetDateFormatPattern()intgetNotAggregableBefore()static AggregationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AggregationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DAILY
public static final AggregationType DAILY
-
MONTHLY
public static final AggregationType MONTHLY
-
YEARLY
public static final AggregationType YEARLY
-
-
Field Detail
-
DATE_SEPARATOR
public static final String DATE_SEPARATOR
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static AggregationType[] 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 (AggregationType c : AggregationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AggregationType 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
-
getCalendarField
public int getCalendarField()
-
getDateFormatPattern
public String getDateFormatPattern()
-
getDateFormat
public DateFormat getDateFormat()
-
getNotAggregableBefore
public int getNotAggregableBefore()
-
-