Enum AutoscalerStateStoreFactory.StateStoreType
- java.lang.Object
-
- java.lang.Enum<AutoscalerStateStoreFactory.StateStoreType>
-
- org.apache.flink.autoscaler.standalone.AutoscalerStateStoreFactory.StateStoreType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AutoscalerStateStoreFactory.StateStoreType>
,org.apache.flink.configuration.DescribedEnum
- Enclosing class:
- AutoscalerStateStoreFactory
public static enum AutoscalerStateStoreFactory.StateStoreType extends java.lang.Enum<AutoscalerStateStoreFactory.StateStoreType> implements org.apache.flink.configuration.DescribedEnum
Out-of-box state store type.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.flink.configuration.description.InlineElement
getDescription()
static AutoscalerStateStoreFactory.StateStoreType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AutoscalerStateStoreFactory.StateStoreType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MEMORY
public static final AutoscalerStateStoreFactory.StateStoreType MEMORY
-
JDBC
public static final AutoscalerStateStoreFactory.StateStoreType JDBC
-
-
Method Detail
-
values
public static AutoscalerStateStoreFactory.StateStoreType[] 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 (AutoscalerStateStoreFactory.StateStoreType c : AutoscalerStateStoreFactory.StateStoreType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AutoscalerStateStoreFactory.StateStoreType 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
-
getDescription
public org.apache.flink.configuration.description.InlineElement getDescription()
- Specified by:
getDescription
in interfaceorg.apache.flink.configuration.DescribedEnum
-
-