Enum JiraIssueUtils.JiraPanel
- java.lang.Object
-
- java.lang.Enum<JiraIssueUtils.JiraPanel>
-
- com.atlassian.bamboo.jira.jiraissues.JiraIssueUtils.JiraPanel
-
- All Implemented Interfaces:
Serializable
,Comparable<JiraIssueUtils.JiraPanel>
- Enclosing class:
- JiraIssueUtils
public static enum JiraIssueUtils.JiraPanel extends Enum<JiraIssueUtils.JiraPanel>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BAMBOO_BUILD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JiraIssueUtils.JiraPanel
valueOf(String name)
Returns the enum constant of this type with the specified name.static JiraIssueUtils.JiraPanel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BAMBOO_BUILD
public static final JiraIssueUtils.JiraPanel BAMBOO_BUILD
-
-
Method Detail
-
values
public static JiraIssueUtils.JiraPanel[] 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 (JiraIssueUtils.JiraPanel c : JiraIssueUtils.JiraPanel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JiraIssueUtils.JiraPanel 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
-
-