public enum AggregationOperator extends Enum<AggregationOperator>
| Enum Constant and Description |
|---|
GEONEAR |
GROUP |
LIMIT |
MATCH |
PROJECT |
SKIP |
SORT |
UNWIND |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static AggregationOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregationOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationOperator PROJECT
public static final AggregationOperator MATCH
public static final AggregationOperator LIMIT
public static final AggregationOperator SKIP
public static final AggregationOperator UNWIND
public static final AggregationOperator GROUP
public static final AggregationOperator SORT
public static final AggregationOperator GEONEAR
public static AggregationOperator[] values()
for (AggregationOperator c : AggregationOperator.values()) System.out.println(c);
public static AggregationOperator 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 nullpublic String toString()
toString in class Enum<AggregationOperator>Copyright © 2015. All Rights Reserved.