Package org.apache.flink.runtime.state
Enum StateObject.StateObjectLocation
- java.lang.Object
-
- java.lang.Enum<StateObject.StateObjectLocation>
-
- org.apache.flink.runtime.state.StateObject.StateObjectLocation
-
- All Implemented Interfaces:
Serializable
,Comparable<StateObject.StateObjectLocation>
- Enclosing interface:
- StateObject
public static enum StateObject.StateObjectLocation extends Enum<StateObject.StateObjectLocation>
Enum for state locations.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LOCAL_DISK
LOCAL_MEMORY
REMOTE
UNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StateObject.StateObjectLocation
valueOf(String name)
Returns the enum constant of this type with the specified name.static StateObject.StateObjectLocation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOCAL_MEMORY
public static final StateObject.StateObjectLocation LOCAL_MEMORY
-
LOCAL_DISK
public static final StateObject.StateObjectLocation LOCAL_DISK
-
REMOTE
public static final StateObject.StateObjectLocation REMOTE
-
UNKNOWN
public static final StateObject.StateObjectLocation UNKNOWN
-
-
Method Detail
-
values
public static StateObject.StateObjectLocation[] 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 (StateObject.StateObjectLocation c : StateObject.StateObjectLocation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StateObject.StateObjectLocation valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-