public static enum Ops.AggOps extends Enum<Ops.AggOps> implements Operator
Enum Constant and Description |
---|
AVG_AGG |
BOOLEAN_ALL |
BOOLEAN_ANY |
COUNT_AGG |
COUNT_ALL_AGG |
COUNT_DISTINCT_AGG |
COUNT_DISTINCT_ALL_AGG |
MAX_AGG |
MIN_AGG |
SUM_AGG |
Modifier and Type | Method and Description |
---|---|
Class<?> |
getType()
Get the result type of the operator
|
static Ops.AggOps |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Ops.AggOps[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ops.AggOps BOOLEAN_ALL
public static final Ops.AggOps BOOLEAN_ANY
public static final Ops.AggOps MAX_AGG
public static final Ops.AggOps MIN_AGG
public static final Ops.AggOps AVG_AGG
public static final Ops.AggOps SUM_AGG
public static final Ops.AggOps COUNT_AGG
public static final Ops.AggOps COUNT_DISTINCT_AGG
public static final Ops.AggOps COUNT_DISTINCT_ALL_AGG
public static final Ops.AggOps COUNT_ALL_AGG
public static Ops.AggOps[] values()
for (Ops.AggOps c : Ops.AggOps.values()) System.out.println(c);
public static Ops.AggOps 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 © 2007–2016 Querydsl. All rights reserved.