Package de.aservo.confapi.crowd.model
Enum ApplicationBean.ApplicationType
- java.lang.Object
-
- java.lang.Enum<ApplicationBean.ApplicationType>
-
- de.aservo.confapi.crowd.model.ApplicationBean.ApplicationType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ApplicationBean.ApplicationType>
- Enclosing class:
- ApplicationBean
public static enum ApplicationBean.ApplicationType extends java.lang.Enum<ApplicationBean.ApplicationType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ApplicationBean.ApplicationTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ApplicationBean.ApplicationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENERIC
public static final ApplicationBean.ApplicationType GENERIC
-
PLUGIN
public static final ApplicationBean.ApplicationType PLUGIN
-
CROWD
public static final ApplicationBean.ApplicationType CROWD
-
JIRA
public static final ApplicationBean.ApplicationType JIRA
-
CONFLUENCE
public static final ApplicationBean.ApplicationType CONFLUENCE
-
BITBUCKET
public static final ApplicationBean.ApplicationType BITBUCKET
-
FISHEYE
public static final ApplicationBean.ApplicationType FISHEYE
-
CRUCIBLE
public static final ApplicationBean.ApplicationType CRUCIBLE
-
BAMBOO
public static final ApplicationBean.ApplicationType BAMBOO
-
-
Method Detail
-
values
public static ApplicationBean.ApplicationType[] 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 (ApplicationBean.ApplicationType c : ApplicationBean.ApplicationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApplicationBean.ApplicationType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-