public enum DocumentStoreVendor extends Enum<DocumentStoreVendor>
Enum Constant and Description |
---|
COSMOS_DB |
ELASTIC_SEARCH |
MONGO_DB |
Modifier and Type | Method and Description |
---|---|
static DocumentStoreVendor |
getStoreType(String storeTypeStr) |
static DocumentStoreVendor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentStoreVendor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentStoreVendor COSMOS_DB
public static final DocumentStoreVendor MONGO_DB
public static final DocumentStoreVendor ELASTIC_SEARCH
public static DocumentStoreVendor[] values()
for (DocumentStoreVendor c : DocumentStoreVendor.values()) System.out.println(c);
public static DocumentStoreVendor 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 static DocumentStoreVendor getStoreType(String storeTypeStr)
Copyright © 2008–2021 Apache Software Foundation. All rights reserved.