Enum Class JiraIssueLinkType
- All Implemented Interfaces:
Serializable
,Comparable<JiraIssueLinkType>
,Constable
Represents a type of link between a build result and a jira issue
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic JiraIssueLinkType
fromInt
(int intValue) Get JiraIssueLinkType object by its int value.Description of link for UI.Returns a string representation of the link typeint
intValue()
Return integer representing this enum.static JiraIssueLinkType
Returns the enum constant of this class with the specified name.static JiraIssueLinkType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BUILD_RELATES
-
BUILD_FIXES
-
BUILD_CAUSES
-
-
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
-
getLinkType
Returns a string representation of the link type- Returns:
- String representation of the link type
-
getLinkDescription
Description of link for UI.- Returns:
- Description of link
-
intValue
public int intValue()Return integer representing this enum.- Since:
- 4.1
-
fromInt
Get JiraIssueLinkType object by its int value.- Since:
- 4.1
-