Enum ReadOnlyBeanContextItemProvider.ContextItems
- java.lang.Object
-
- java.lang.Enum<ReadOnlyBeanContextItemProvider.ContextItems>
-
- com.atlassian.confluence.impl.velocity.ReadOnlyBeanContextItemProvider.ContextItems
-
- All Implemented Interfaces:
Serializable
,Comparable<ReadOnlyBeanContextItemProvider.ContextItems>
- Enclosing class:
- ReadOnlyBeanContextItemProvider
public static enum ReadOnlyBeanContextItemProvider.ContextItems extends Enum<ReadOnlyBeanContextItemProvider.ContextItems>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPLICATION_CONFIG
BOOTSTRAP_STATUS
CONFLUENCE_SETUP
Deprecated, for removal: This API element is subject to removal in a future version.PERSON_SERVICE
SETUP_PERSISTER
SPACE_SETTINGS
USER_ACCESSOR
WEB_INTERFACE_MANAGER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getKey()
static ReadOnlyBeanContextItemProvider.ContextItems
valueOf(String name)
Returns the enum constant of this type with the specified name.static ReadOnlyBeanContextItemProvider.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 ReadOnlyBeanContextItemProvider.ContextItems BOOTSTRAP_STATUS
-
CONFLUENCE_SETUP
@Deprecated(forRemoval=true) public static final ReadOnlyBeanContextItemProvider.ContextItems CONFLUENCE_SETUP
Deprecated, for removal: This API element is subject to removal in a future version.
-
APPLICATION_CONFIG
public static final ReadOnlyBeanContextItemProvider.ContextItems APPLICATION_CONFIG
-
SETUP_PERSISTER
public static final ReadOnlyBeanContextItemProvider.ContextItems SETUP_PERSISTER
-
SPACE_SETTINGS
public static final ReadOnlyBeanContextItemProvider.ContextItems SPACE_SETTINGS
-
USER_ACCESSOR
public static final ReadOnlyBeanContextItemProvider.ContextItems USER_ACCESSOR
-
PERSON_SERVICE
public static final ReadOnlyBeanContextItemProvider.ContextItems PERSON_SERVICE
-
WEB_INTERFACE_MANAGER
public static final ReadOnlyBeanContextItemProvider.ContextItems WEB_INTERFACE_MANAGER
-
-
Method Detail
-
values
public static ReadOnlyBeanContextItemProvider.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 (ReadOnlyBeanContextItemProvider.ContextItems c : ReadOnlyBeanContextItemProvider.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 ReadOnlyBeanContextItemProvider.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()
-
-