java.io.Serializable, java.lang.Comparable<DocumentStoreVendor>public enum DocumentStoreVendor extends java.lang.Enum<DocumentStoreVendor>
| Enum Constant | Description |
|---|---|
COSMOS_DB |
|
ELASTIC_SEARCH |
|
MONGO_DB |
| Modifier and Type | Method | Description |
|---|---|---|
static DocumentStoreVendor |
getStoreType(java.lang.String storeTypeStr) |
|
static DocumentStoreVendor |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static DocumentStoreVendor getStoreType(java.lang.String storeTypeStr)
Copyright © 2008–2025 Apache Software Foundation. All rights reserved.