public enum Feature extends Enum<Feature>
| Enum Constant and Description |
|---|
DISABLE_USE_PREALLOC |
DISABLE_USE_SMALL_FILES |
MONGOS_CONFIGDB_SET_STYLE |
NO_BIND_IP_TO_LOCALHOST |
NO_CHUNKSIZE_ARG |
NO_HTTP_INTERFACE_ARG |
NO_SOLARIS_SUPPORT |
ONLY_64BIT |
STORAGE_ENGINE |
SYNC_DELAY |
TEXT_SEARCH |
| Modifier and Type | Method and Description |
|---|---|
static EnumSet<Feature> |
asSet(Feature... features) |
static Feature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Feature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Feature SYNC_DELAY
public static final Feature TEXT_SEARCH
public static final Feature STORAGE_ENGINE
public static final Feature ONLY_64BIT
public static final Feature NO_CHUNKSIZE_ARG
public static final Feature MONGOS_CONFIGDB_SET_STYLE
public static final Feature NO_HTTP_INTERFACE_ARG
public static final Feature NO_SOLARIS_SUPPORT
public static final Feature NO_BIND_IP_TO_LOCALHOST
public static final Feature DISABLE_USE_PREALLOC
public static final Feature DISABLE_USE_SMALL_FILES
public static Feature[] values()
for (Feature c : Feature.values()) System.out.println(c);
public static Feature 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 © 2021. All rights reserved.