Package jetbrains.buildServer.serverSide
Enum BuildPromotionEx.CompatibilityCacheUpdateMode
- java.lang.Object
-
- java.lang.Enum<BuildPromotionEx.CompatibilityCacheUpdateMode>
-
- jetbrains.buildServer.serverSide.BuildPromotionEx.CompatibilityCacheUpdateMode
-
- All Implemented Interfaces:
Serializable
,Comparable<BuildPromotionEx.CompatibilityCacheUpdateMode>
- Enclosing interface:
- BuildPromotionEx
public static enum BuildPromotionEx.CompatibilityCacheUpdateMode extends Enum<BuildPromotionEx.CompatibilityCacheUpdateMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description RESET_AGENT
RESET_AGENT_AND_AGENT_TYPE
UPDATE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BuildPromotionEx.CompatibilityCacheUpdateMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static BuildPromotionEx.CompatibilityCacheUpdateMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UPDATE
public static final BuildPromotionEx.CompatibilityCacheUpdateMode UPDATE
-
RESET_AGENT_AND_AGENT_TYPE
public static final BuildPromotionEx.CompatibilityCacheUpdateMode RESET_AGENT_AND_AGENT_TYPE
-
RESET_AGENT
public static final BuildPromotionEx.CompatibilityCacheUpdateMode RESET_AGENT
-
-
Method Detail
-
values
public static BuildPromotionEx.CompatibilityCacheUpdateMode[] 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 (BuildPromotionEx.CompatibilityCacheUpdateMode c : BuildPromotionEx.CompatibilityCacheUpdateMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BuildPromotionEx.CompatibilityCacheUpdateMode 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
-
-