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