Package hudson.model
Enum Class ManagementLink.Category
- All Implemented Interfaces:
Serializable
,Comparable<ManagementLink.Category>
,Constable
- Enclosing class:
- ManagementLink
Categories supported by this version of core.
- Since:
- 2.226
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionConfiguration pages that don't fit into a more specific section.Anything that doesn't fit into any of the other categories.Security related options.Status information about the Jenkins instance, such as log messages, load statistics, or general information.Tools are specifically tools for administrators, such as the Jenkins CLI and Script Console, as well as specific stand-alone administrative features (ShutdownLink
,ReloadLink
).Troubleshooting utilities.The default category for uncategorized items. -
Method Summary
Modifier and TypeMethodDescriptiongetLabel()
static ManagementLink.Category
Returns the enum constant of this class with the specified name.static ManagementLink.Category[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONFIGURATION
Configuration pages that don't fit into a more specific section. -
SECURITY
Security related options. Useful for plugins providing security relatedManagementLink
s (e.g. security realms). UseSTATUS
instead if the feature is informational. -
STATUS
Status information about the Jenkins instance, such as log messages, load statistics, or general information. -
TROUBLESHOOTING
Troubleshooting utilities. This overlaps some with status information, but the difference is that status always applies, while troubleshooting only matters when things go wrong. -
TOOLS
Tools are specifically tools for administrators, such as the Jenkins CLI and Script Console, as well as specific stand-alone administrative features (ShutdownLink
,ReloadLink
). This has nothing to do with build tools or tool installers. -
MISC
Anything that doesn't fit into any of the other categories. Expected to be necessary only very rarely. -
UNCATEGORIZED
The default category for uncategorized items. Do not explicitly specify this category for yourManagementLink
.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getLabel
-