Serializable
, Comparable<AggregationOptions.OutputMode>
@Deprecated public static enum AggregationOptions.OutputMode extends Enum<AggregationOptions.OutputMode>
Enum Constant | Description |
---|---|
CURSOR |
Deprecated.
The output of the aggregate operation is returned using a cursor.
|
INLINE |
Deprecated.
The output of the aggregate operation is returned inline.
|
Modifier and Type | Method | Description |
---|---|---|
static AggregationOptions.OutputMode |
valueOf(String name) |
Deprecated.
Returns the enum constant of this type with the specified name.
|
static AggregationOptions.OutputMode[] |
values() |
Deprecated.
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