Enum VelocityContextItemProvider.VelocityContextItemKeys
- java.lang.Object
-
- java.lang.Enum<VelocityContextItemProvider.VelocityContextItemKeys>
-
- com.atlassian.confluence.setup.velocity.VelocityContextItemProvider.VelocityContextItemKeys
-
- All Implemented Interfaces:
Serializable
,Comparable<VelocityContextItemProvider.VelocityContextItemKeys>
- Enclosing interface:
- VelocityContextItemProvider
public static enum VelocityContextItemProvider.VelocityContextItemKeys extends Enum<VelocityContextItemProvider.VelocityContextItemKeys>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOTSTRAP_MANAGER
BUILD_INFO
CONFLUENCE_SETUP
DECORATOR_UTIL
FILE_UTIL
GENERAL_UTIL
HTML_UTIL
SERAPH_UTIL
SETUP_PERSISTER
SPACE_UTILS
STRING_UTILS
SYSTEM_PROPERTIES
TEXT_UTIL
WEBWORK
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getKey()
static VelocityContextItemProvider.VelocityContextItemKeys
valueOf(String name)
Returns the enum constant of this type with the specified name.static VelocityContextItemProvider.VelocityContextItemKeys[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HTML_UTIL
public static final VelocityContextItemProvider.VelocityContextItemKeys HTML_UTIL
-
GENERAL_UTIL
public static final VelocityContextItemProvider.VelocityContextItemKeys GENERAL_UTIL
-
TEXT_UTIL
public static final VelocityContextItemProvider.VelocityContextItemKeys TEXT_UTIL
-
FILE_UTIL
public static final VelocityContextItemProvider.VelocityContextItemKeys FILE_UTIL
-
SERAPH_UTIL
public static final VelocityContextItemProvider.VelocityContextItemKeys SERAPH_UTIL
-
BOOTSTRAP_MANAGER
public static final VelocityContextItemProvider.VelocityContextItemKeys BOOTSTRAP_MANAGER
-
CONFLUENCE_SETUP
public static final VelocityContextItemProvider.VelocityContextItemKeys CONFLUENCE_SETUP
-
SETUP_PERSISTER
public static final VelocityContextItemProvider.VelocityContextItemKeys SETUP_PERSISTER
-
STRING_UTILS
public static final VelocityContextItemProvider.VelocityContextItemKeys STRING_UTILS
-
SPACE_UTILS
public static final VelocityContextItemProvider.VelocityContextItemKeys SPACE_UTILS
-
SYSTEM_PROPERTIES
public static final VelocityContextItemProvider.VelocityContextItemKeys SYSTEM_PROPERTIES
-
BUILD_INFO
public static final VelocityContextItemProvider.VelocityContextItemKeys BUILD_INFO
-
DECORATOR_UTIL
public static final VelocityContextItemProvider.VelocityContextItemKeys DECORATOR_UTIL
-
WEBWORK
public static final VelocityContextItemProvider.VelocityContextItemKeys WEBWORK
-
-
Method Detail
-
values
public static VelocityContextItemProvider.VelocityContextItemKeys[] 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 (VelocityContextItemProvider.VelocityContextItemKeys c : VelocityContextItemProvider.VelocityContextItemKeys.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VelocityContextItemProvider.VelocityContextItemKeys 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()
-
-