public enum PlatformType extends java.lang.Enum<PlatformType>
| Enum Constant and Description |
|---|
FILE_SYSTEM |
KEY_VALUE_STORE |
MESSAGE_BROKER |
OBJECT_STORE |
OLAP_DATASTORE |
OTHERS |
QUERY_ENGINE |
RELATIONAL_DB |
SEARCH_ENGINE |
| Modifier and Type | Method and Description |
|---|---|
static PlatformType |
fromValue(java.lang.String text) |
java.lang.String |
toString() |
static PlatformType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlatformType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlatformType FILE_SYSTEM
public static final PlatformType KEY_VALUE_STORE
public static final PlatformType MESSAGE_BROKER
public static final PlatformType OBJECT_STORE
public static final PlatformType OLAP_DATASTORE
public static final PlatformType OTHERS
public static final PlatformType QUERY_ENGINE
public static final PlatformType RELATIONAL_DB
public static final PlatformType SEARCH_ENGINE
public static PlatformType[] values()
for (PlatformType c : PlatformType.values()) System.out.println(c);
public static PlatformType 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 java.lang.String toString()
toString in class java.lang.Enum<PlatformType>public static PlatformType fromValue(java.lang.String text)