public static enum TemporalConstraint.AggregationMode extends Enum<TemporalConstraint.AggregationMode>
| Enum Constant and Description |
|---|
DAILY |
HOURLY |
MILLISECONDLY |
MINUTELY |
MONTHLY |
SECONDLY |
YEARLY |
| Modifier and Type | Method and Description |
|---|---|
static TemporalConstraint.AggregationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TemporalConstraint.AggregationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TemporalConstraint.AggregationMode YEARLY
public static final TemporalConstraint.AggregationMode MONTHLY
public static final TemporalConstraint.AggregationMode DAILY
public static final TemporalConstraint.AggregationMode HOURLY
public static final TemporalConstraint.AggregationMode MINUTELY
public static final TemporalConstraint.AggregationMode SECONDLY
public static final TemporalConstraint.AggregationMode MILLISECONDLY
public static TemporalConstraint.AggregationMode[] values()
for (TemporalConstraint.AggregationMode c : TemporalConstraint.AggregationMode.values()) System.out.println(c);
public static TemporalConstraint.AggregationMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All Rights Reserved.