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