public static enum PathExpression.AggregationType extends Enum<PathExpression.AggregationType>
Modifier and Type | Method and Description |
---|---|
static PathExpression.AggregationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PathExpression.AggregationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathExpression.AggregationType SUM
public static final PathExpression.AggregationType AVG
public static final PathExpression.AggregationType MIN
public static final PathExpression.AggregationType MAX
public static final PathExpression.AggregationType COUNT
public static PathExpression.AggregationType[] values()
for (PathExpression.AggregationType c : PathExpression.AggregationType.values()) System.out.println(c);
public static PathExpression.AggregationType 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 © 2020 JBoss, a division of Red Hat. All rights reserved.