@GeneratedType(value="net.datenwerke.dtoservices.dtogenerator.DtoAnnotationProcessor") public enum AggregateFunctionDto extends java.lang.Enum<AggregateFunctionDto>
Enum Constant and Description |
---|
AVG |
COUNT |
COUNT_DISTINCT |
MAX |
MIN |
SUM |
VARIANCE |
Modifier and Type | Method and Description |
---|---|
static AggregateFunctionDto |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AggregateFunctionDto[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregateFunctionDto AVG
public static final AggregateFunctionDto COUNT
public static final AggregateFunctionDto MAX
public static final AggregateFunctionDto MIN
public static final AggregateFunctionDto SUM
public static final AggregateFunctionDto VARIANCE
public static final AggregateFunctionDto COUNT_DISTINCT
public static AggregateFunctionDto[] values()
for (AggregateFunctionDto c : AggregateFunctionDto.values()) System.out.println(c);
public static AggregateFunctionDto valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null