public static enum AggregationOptions.OutputMode extends Enum<AggregationOptions.OutputMode>
Enum Constant and Description |
---|
CURSOR
The output of the aggregate operation is returned using a cursor.
|
INLINE
The output of the aggregate operation is returned inline.
|
Modifier and Type | Method and Description |
---|---|
static AggregationOptions.OutputMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregationOptions.OutputMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationOptions.OutputMode INLINE
public static final AggregationOptions.OutputMode CURSOR
public static AggregationOptions.OutputMode[] values()
for (AggregationOptions.OutputMode c : AggregationOptions.OutputMode.values()) System.out.println(c);
public static AggregationOptions.OutputMode 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 null