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