Enum CrossNodesEvent.Type
- java.lang.Object
-
- java.lang.Enum<CrossNodesEvent.Type>
-
- com.atlassian.bamboo.cluster.event.CrossNodesEvent.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<CrossNodesEvent.Type>
- Enclosing interface:
- CrossNodesEvent
public static enum CrossNodesEvent.Type extends Enum<CrossNodesEvent.Type>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CrossNodesEvent.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static CrossNodesEvent.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INVALIDATE_PLAN_CACHE
public static final CrossNodesEvent.Type INVALIDATE_PLAN_CACHE
-
HIDE_PLAN
public static final CrossNodesEvent.Type HIDE_PLAN
-
HIDE_STAGE
public static final CrossNodesEvent.Type HIDE_STAGE
-
INVALIDATE_BUILD_NUMBERS_RANGE
public static final CrossNodesEvent.Type INVALIDATE_BUILD_NUMBERS_RANGE
-
INVALIDATE_LATEST_RESULT_SUMMARY
public static final CrossNodesEvent.Type INVALIDATE_LATEST_RESULT_SUMMARY
-
INVALIDATE_ALL_LATEST_RESULT_SUMMARIES
public static final CrossNodesEvent.Type INVALIDATE_ALL_LATEST_RESULT_SUMMARIES
-
INVALIDATE_SPECS_STATE_FOR_PLAN_REQUEST
public static final CrossNodesEvent.Type INVALIDATE_SPECS_STATE_FOR_PLAN_REQUEST
-
INVALIDATE_REPOSITORY_CACHE
public static final CrossNodesEvent.Type INVALIDATE_REPOSITORY_CACHE
-
INSTALL_PLUGIN
public static final CrossNodesEvent.Type INSTALL_PLUGIN
-
UNINSTALL_PLUGIN
public static final CrossNodesEvent.Type UNINSTALL_PLUGIN
-
ENABLE_PLUGIN
public static final CrossNodesEvent.Type ENABLE_PLUGIN
-
DISABLE_PLUGIN
public static final CrossNodesEvent.Type DISABLE_PLUGIN
-
UPGRADE_PLUGIN
public static final CrossNodesEvent.Type UPGRADE_PLUGIN
-
ATLASSIAN_CACHE_PUT
public static final CrossNodesEvent.Type ATLASSIAN_CACHE_PUT
-
ATLASSIAN_CACHE_PUT_IF_ABSENT
public static final CrossNodesEvent.Type ATLASSIAN_CACHE_PUT_IF_ABSENT
-
ATLASSIAN_CACHE_REMOVE_BY_KEY
public static final CrossNodesEvent.Type ATLASSIAN_CACHE_REMOVE_BY_KEY
-
ATLASSIAN_CACHE_REMOVE_BY_KEY_AND_VALUE
public static final CrossNodesEvent.Type ATLASSIAN_CACHE_REMOVE_BY_KEY_AND_VALUE
-
ATLASSIAN_CACHE_REMOVE_ALL
public static final CrossNodesEvent.Type ATLASSIAN_CACHE_REMOVE_ALL
-
ATLASSIAN_CACHE_REPLACE
public static final CrossNodesEvent.Type ATLASSIAN_CACHE_REPLACE
-
ATLASSIAN_CACHE_BULK
public static final CrossNodesEvent.Type ATLASSIAN_CACHE_BULK
-
ATLASSIAN_CACHED_REFERENCE_RESET
public static final CrossNodesEvent.Type ATLASSIAN_CACHED_REFERENCE_RESET
-
INVALIDATE_USER_SESSIONS
public static final CrossNodesEvent.Type INVALIDATE_USER_SESSIONS
-
REFRESH_CLUSTER_LIFECYCLE_STATE
public static final CrossNodesEvent.Type REFRESH_CLUSTER_LIFECYCLE_STATE
-
REFRESH_ADMINISTRATION_CONFIGURATION
public static final CrossNodesEvent.Type REFRESH_ADMINISTRATION_CONFIGURATION
-
-
Method Detail
-
values
public static CrossNodesEvent.Type[] 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 (CrossNodesEvent.Type c : CrossNodesEvent.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CrossNodesEvent.Type 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
-
-