public enum MongoMethod extends Enum<MongoMethod>
| Enum Constant and Description |
|---|
MONGO_QUERYABLE_AGGREGATE |
MONGO_QUERYABLE_FIND |
| Modifier and Type | Field and Description |
|---|---|
static com.google.common.collect.ImmutableMap<Method,MongoMethod> |
MAP |
Method |
method |
| Modifier and Type | Method and Description |
|---|---|
static MongoMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MongoMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MongoMethod MONGO_QUERYABLE_FIND
public static final MongoMethod MONGO_QUERYABLE_AGGREGATE
public final Method method
public static final com.google.common.collect.ImmutableMap<Method,MongoMethod> MAP
public static MongoMethod[] values()
for (MongoMethod c : MongoMethod.values()) System.out.println(c);
public static MongoMethod 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 © 2012-2020 Apache Software Foundation. All Rights Reserved.