Enum StateMetaInfoSnapshot.CommonSerializerKeys
- java.lang.Object
-
- java.lang.Enum<StateMetaInfoSnapshot.CommonSerializerKeys>
-
- org.apache.flink.runtime.state.metainfo.StateMetaInfoSnapshot.CommonSerializerKeys
-
- All Implemented Interfaces:
Serializable
,Comparable<StateMetaInfoSnapshot.CommonSerializerKeys>
- Enclosing class:
- StateMetaInfoSnapshot
public static enum StateMetaInfoSnapshot.CommonSerializerKeys extends Enum<StateMetaInfoSnapshot.CommonSerializerKeys>
Predefined keys for the most common serializer types in the meta info.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description KEY_SERIALIZER
NAMESPACE_SERIALIZER
VALUE_SERIALIZER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StateMetaInfoSnapshot.CommonSerializerKeys
valueOf(String name)
Returns the enum constant of this type with the specified name.static StateMetaInfoSnapshot.CommonSerializerKeys[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
KEY_SERIALIZER
public static final StateMetaInfoSnapshot.CommonSerializerKeys KEY_SERIALIZER
-
NAMESPACE_SERIALIZER
public static final StateMetaInfoSnapshot.CommonSerializerKeys NAMESPACE_SERIALIZER
-
VALUE_SERIALIZER
public static final StateMetaInfoSnapshot.CommonSerializerKeys VALUE_SERIALIZER
-
-
Method Detail
-
values
public static StateMetaInfoSnapshot.CommonSerializerKeys[] 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 (StateMetaInfoSnapshot.CommonSerializerKeys c : StateMetaInfoSnapshot.CommonSerializerKeys.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StateMetaInfoSnapshot.CommonSerializerKeys 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
-
-