Enum Component.ComponentCategory
java.lang.Object
java.lang.Enum<Component.ComponentCategory>
com.cloudbees.jenkins.support.api.Component.ComponentCategory
- All Implemented Interfaces:
Serializable
,Comparable<Component.ComponentCategory>
- Enclosing class:
- Component
Categories supported by this version of support-core
- Since:
- TODO
-
Enum Constant Summary
Enum ConstantDescriptionFor components related to the agents, their configuration and other bits.For components related to queued, running, or historical builds.For components related to the controller, its configuration and other bits.For components related to the logging system or the logs themself.Anything that doesn't fit any other categories.For components related to how the controller is running and where it is running.The default category. -
Method Summary
Modifier and TypeMethodDescriptiongetLabel()
static Component.ComponentCategory
Returns the enum constant of this type with the specified name.static Component.ComponentCategory[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
AGENT
For components related to the agents, their configuration and other bits. -
BUILDS
For components related to queued, running, or historical builds. -
CONTROLLER
For components related to the controller, its configuration and other bits. -
LOGS
For components related to the logging system or the logs themself. -
MISC
Anything that doesn't fit any other categories. -
PLATFORM
For components related to how the controller is running and where it is running. -
UNCATEGORIZED
The default category. This shouldn't be explicitly used.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getLabel
-