com.atlassian.confluence.it.admin
Enum BundledTheme

java.lang.Object
  extended by java.lang.Enum<BundledTheme>
      extended by com.atlassian.confluence.it.admin.BundledTheme
All Implemented Interfaces:
Serializable, Comparable<BundledTheme>

public enum BundledTheme
extends Enum<BundledTheme>

Themes bundled with the BTF and OnDemand flavours of Confluence.


Enum Constant Summary
DEFAULT
           
DOCUMENTATION
           
 
Method Summary
static BundledTheme getDefaultTheme()
           
static BundledTheme getDocumentationTheme()
           
 String getKey()
           
static BundledTheme[] getNonDefaultThemes()
           
static BundledTheme valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BundledTheme[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DEFAULT

public static final BundledTheme DEFAULT

DOCUMENTATION

public static final BundledTheme DOCUMENTATION
Method Detail

values

public static BundledTheme[] 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 (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)
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 name
NullPointerException - if the argument is null

getKey

public String getKey()

getDefaultTheme

public static BundledTheme getDefaultTheme()

getDocumentationTheme

public static BundledTheme getDocumentationTheme()

getNonDefaultThemes

public static BundledTheme[] getNonDefaultThemes()


Copyright © 2003-2013 Atlassian. All Rights Reserved.