org.pentaho.chart.model
Enum Theme.ChartTheme

java.lang.Object
  extended by java.lang.Enum<Theme.ChartTheme>
      extended by org.pentaho.chart.model.Theme.ChartTheme
All Implemented Interfaces:
Serializable, Comparable<Theme.ChartTheme>
Enclosing class:
Theme

public static enum Theme.ChartTheme
extends Enum<Theme.ChartTheme>


Enum Constant Summary
THEME1
           
THEME2
           
THEME3
           
THEME4
           
THEME5
           
THEME6
           
 
Method Summary
static Theme.ChartTheme valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Theme.ChartTheme[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

THEME1

public static final Theme.ChartTheme THEME1

THEME2

public static final Theme.ChartTheme THEME2

THEME3

public static final Theme.ChartTheme THEME3

THEME4

public static final Theme.ChartTheme THEME4

THEME5

public static final Theme.ChartTheme THEME5

THEME6

public static final Theme.ChartTheme THEME6
Method Detail

values

public static final Theme.ChartTheme[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(Theme.ChartTheme c : Theme.ChartTheme.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static Theme.ChartTheme 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