public static enum Property.Aggregator extends Enum<Property.Aggregator>
| Enum Constant and Description | 
|---|
COUNT
Count. 
 | 
IDENT
Do not aggregate. 
 | 
MAX
Maximum. 
 | 
MIN
Minimum. 
 | 
SUM
Summation. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Property.Aggregator | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static Property.Aggregator[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Property.Aggregator IDENT
public static final Property.Aggregator SUM
public static final Property.Aggregator COUNT
public static final Property.Aggregator MAX
public static final Property.Aggregator MIN
public static Property.Aggregator[] values()
for (Property.Aggregator c : Property.Aggregator.values()) System.out.println(c);
public static Property.Aggregator 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 © 2011–2019 Asakusa Framework Team. All rights reserved.