org.pentaho.chart.model
Enum Theme.ChartTheme
java.lang.Object
java.lang.Enum<Theme.ChartTheme>
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>
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
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