Package com.linkedin.venice.common
Enum PushStatusStoreUtils.PushStatusKeyType
- java.lang.Object
-
- java.lang.Enum<PushStatusStoreUtils.PushStatusKeyType>
-
- com.linkedin.venice.common.PushStatusStoreUtils.PushStatusKeyType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PushStatusStoreUtils.PushStatusKeyType>
- Enclosing class:
- PushStatusStoreUtils
public static enum PushStatusStoreUtils.PushStatusKeyType extends java.lang.Enum<PushStatusStoreUtils.PushStatusKeyType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FULL_PUSH
HEARTBEAT
INCREMENTAL_PUSH
ONGOING_INCREMENTAL_PUSHES
SERVER_INCREMENTAL_PUSH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PushStatusStoreUtils.PushStatusKeyType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PushStatusStoreUtils.PushStatusKeyType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HEARTBEAT
public static final PushStatusStoreUtils.PushStatusKeyType HEARTBEAT
-
FULL_PUSH
public static final PushStatusStoreUtils.PushStatusKeyType FULL_PUSH
-
INCREMENTAL_PUSH
public static final PushStatusStoreUtils.PushStatusKeyType INCREMENTAL_PUSH
-
SERVER_INCREMENTAL_PUSH
public static final PushStatusStoreUtils.PushStatusKeyType SERVER_INCREMENTAL_PUSH
-
ONGOING_INCREMENTAL_PUSHES
public static final PushStatusStoreUtils.PushStatusKeyType ONGOING_INCREMENTAL_PUSHES
-
-
Method Detail
-
values
public static PushStatusStoreUtils.PushStatusKeyType[] 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 (PushStatusStoreUtils.PushStatusKeyType c : PushStatusStoreUtils.PushStatusKeyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PushStatusStoreUtils.PushStatusKeyType 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
-
-