public static enum MAggregate.AggOp extends Enum<MAggregate.AggOp>
| Enum Constant and Description |
|---|
Average
The Average.
|
Count
The Count.
|
Max
The Max.
|
Min
The Min.
|
Sum
The Sum.
|
| Modifier and Type | Method and Description |
|---|---|
static MAggregate.AggOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MAggregate.AggOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MAggregate.AggOp Sum
public static final MAggregate.AggOp Min
public static final MAggregate.AggOp Max
public static final MAggregate.AggOp Average
public static final MAggregate.AggOp Count
public static MAggregate.AggOp[] values()
for (MAggregate.AggOp c : MAggregate.AggOp.values()) System.out.println(c);
public static MAggregate.AggOp 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 © 2003–2024 Terracotta, Inc.. All rights reserved.