Package io.jenkins.plugins.dotnet.data
Enum Downloads.Version.Status
- All Implemented Interfaces:
Serializable
,Comparable<Downloads.Version.Status>
- Enclosing class:
- Downloads.Version
The support status of a .NET version.
-
Enum Constant Summary
Enum ConstantDescriptionThis version is current and supported.This version has reached end-of-life.This is a version with long-term support.The version is no longer current, and will only get security fixes before reaching end-of-life.This is a preview of the next version of .NET.This is release candidate for the next version of .NET.The status of the version is unknown. -
Method Summary
Modifier and TypeMethodDescriptionMaps this status to a descriptive string.static Downloads.Version.Status
Returns the enum constant of this type with the specified name.static Downloads.Version.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CURRENT
This version is current and supported. -
EOL
This version has reached end-of-life. -
LTS
This is a version with long-term support. -
MAINTENANCE
The version is no longer current, and will only get security fixes before reaching end-of-life. -
PREVIEW
This is a preview of the next version of .NET. -
RC
This is release candidate for the next version of .NET. -
UNKNOWN
The status of the version is unknown.
-
-
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
-
getDisplayName
Maps this status to a descriptive string.- Returns:
- A string describing this status.
-