Enum DynamicContextItemProvider.ContextItems
- java.lang.Object
-
- java.lang.Enum<DynamicContextItemProvider.ContextItems>
-
- com.atlassian.confluence.setup.velocity.DynamicContextItemProvider.ContextItems
-
- All Implemented Interfaces:
Serializable,Comparable<DynamicContextItemProvider.ContextItems>
- Enclosing class:
- DynamicContextItemProvider
public static enum DynamicContextItemProvider.ContextItems extends Enum<DynamicContextItemProvider.ContextItems>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPLICATION_CONFIGBOOTSTRAP_STATUSCONFLUENCE_SETUPGLOBAL_DESCRIPTIONGLOBAL_SETTINGSPERSON_SERVICESETUP_PERSISTERUSER_ACCESSOR
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetKey()static DynamicContextItemProvider.ContextItemsvalueOf(String name)Returns the enum constant of this type with the specified name.static DynamicContextItemProvider.ContextItems[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOTSTRAP_STATUS
public static final DynamicContextItemProvider.ContextItems BOOTSTRAP_STATUS
-
CONFLUENCE_SETUP
public static final DynamicContextItemProvider.ContextItems CONFLUENCE_SETUP
-
APPLICATION_CONFIG
public static final DynamicContextItemProvider.ContextItems APPLICATION_CONFIG
-
SETUP_PERSISTER
public static final DynamicContextItemProvider.ContextItems SETUP_PERSISTER
-
GLOBAL_SETTINGS
public static final DynamicContextItemProvider.ContextItems GLOBAL_SETTINGS
-
GLOBAL_DESCRIPTION
public static final DynamicContextItemProvider.ContextItems GLOBAL_DESCRIPTION
-
USER_ACCESSOR
public static final DynamicContextItemProvider.ContextItems USER_ACCESSOR
-
PERSON_SERVICE
public static final DynamicContextItemProvider.ContextItems PERSON_SERVICE
-
-
Method Detail
-
values
public static DynamicContextItemProvider.ContextItems[] 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 (DynamicContextItemProvider.ContextItems c : DynamicContextItemProvider.ContextItems.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DynamicContextItemProvider.ContextItems 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
-
getKey
public String getKey()
-
-