Enum BundledTheme
- java.lang.Object
-
- java.lang.Enum<BundledTheme>
-
- com.atlassian.confluence.it.admin.BundledTheme
-
- All Implemented Interfaces:
Serializable
,Comparable<BundledTheme>
public enum BundledTheme extends Enum<BundledTheme>
Deprecated.since 6.0 due to removal of DocThemeThemes bundled with the BTF and OnDemand flavours of Confluence.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEFAULT
Deprecated.DOCUMENTATION
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static BundledTheme
getDefaultTheme()
Deprecated.static BundledTheme
getDocumentationTheme()
Deprecated.since 6.0 due to removal of DocThemeString
getKey()
Deprecated.static BundledTheme[]
getNonDefaultThemes()
Deprecated.static BundledTheme
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static BundledTheme[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final BundledTheme DEFAULT
Deprecated.
-
DOCUMENTATION
public static final BundledTheme DOCUMENTATION
Deprecated.
-
-
Method Detail
-
values
public static BundledTheme[] values()
Deprecated.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 (BundledTheme c : BundledTheme.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BundledTheme valueOf(String name)
Deprecated.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()
Deprecated.
-
getDefaultTheme
public static BundledTheme getDefaultTheme()
Deprecated.
-
getDocumentationTheme
public static BundledTheme getDocumentationTheme()
Deprecated.since 6.0 due to removal of DocTheme
-
getNonDefaultThemes
public static BundledTheme[] getNonDefaultThemes()
Deprecated.
-
-