Enum DataStoreProperty.Value
- java.lang.Object
-
- java.lang.Enum<DataStoreProperty.Value>
-
- org.apache.nemo.common.ir.edge.executionproperty.DataStoreProperty.Value
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DataStoreProperty.Value>
- Enclosing class:
- DataStoreProperty
public static enum DataStoreProperty.Value extends java.lang.Enum<DataStoreProperty.Value>
Possible values of DataStore ExecutionProperty.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GLUSTER_FILE_STORE
LOCAL_FILE_STORE
MEMORY_STORE
PIPE
SERIALIZED_MEMORY_STORE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DataStoreProperty.Value
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DataStoreProperty.Value[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PIPE
public static final DataStoreProperty.Value PIPE
-
MEMORY_STORE
public static final DataStoreProperty.Value MEMORY_STORE
-
SERIALIZED_MEMORY_STORE
public static final DataStoreProperty.Value SERIALIZED_MEMORY_STORE
-
LOCAL_FILE_STORE
public static final DataStoreProperty.Value LOCAL_FILE_STORE
-
GLUSTER_FILE_STORE
public static final DataStoreProperty.Value GLUSTER_FILE_STORE
-
-
Method Detail
-
values
public static DataStoreProperty.Value[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DataStoreProperty.Value c : DataStoreProperty.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataStoreProperty.Value valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-