Package org.zkoss.chart
Enum Theme.ThemeImpl
- java.lang.Object
-
- java.lang.Enum<Theme.ThemeImpl>
-
- org.zkoss.chart.Theme.ThemeImpl
-
- All Implemented Interfaces:
Serializable
,Comparable<Theme.ThemeImpl>
,Theme
,org.zkoss.json.JSONAware
- Enclosing interface:
- Theme
public static enum Theme.ThemeImpl extends Enum<Theme.ThemeImpl> implements Theme
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.zkoss.chart.Theme
Theme.ThemeImpl
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVOCADO
BRAND_DARK
BRAND_LIGHT
DARK_BLUE
DARK_GREEN
DARK_UNICA
DEFAULT
GRAY
GRID
GRID_LIGHT
HIGH_CONTRAST_DARK
HIGH_CONTRAST_LIGHT
SAND_SIGNIKA
SKIES
SUNSET
-
Field Summary
-
Fields inherited from interface org.zkoss.chart.Theme
AVOCADO, BRAND_DARK, BRAND_LIGHT, DARK_BLUE, DARK_GREEN, DARK_UNICA, DEFAULT, GRAY, GRID, GRID_LIGHT, HIGH_CONTRAST_DARK, HIGH_CONTRAST_LIGHT, SAND_SIGNIKA, SKIES, SUNSET
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toJSONString()
static Theme.ThemeImpl
valueOf(String name)
Returns the enum constant of this type with the specified name.static Theme.ThemeImpl[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final Theme.ThemeImpl DEFAULT
-
DARK_BLUE
public static final Theme.ThemeImpl DARK_BLUE
-
DARK_GREEN
public static final Theme.ThemeImpl DARK_GREEN
-
GRAY
public static final Theme.ThemeImpl GRAY
-
GRID
public static final Theme.ThemeImpl GRID
-
SKIES
public static final Theme.ThemeImpl SKIES
-
DARK_UNICA
public static final Theme.ThemeImpl DARK_UNICA
-
SAND_SIGNIKA
public static final Theme.ThemeImpl SAND_SIGNIKA
-
GRID_LIGHT
public static final Theme.ThemeImpl GRID_LIGHT
-
AVOCADO
public static final Theme.ThemeImpl AVOCADO
-
HIGH_CONTRAST_DARK
public static final Theme.ThemeImpl HIGH_CONTRAST_DARK
-
HIGH_CONTRAST_LIGHT
public static final Theme.ThemeImpl HIGH_CONTRAST_LIGHT
-
SUNSET
public static final Theme.ThemeImpl SUNSET
-
BRAND_DARK
public static final Theme.ThemeImpl BRAND_DARK
-
BRAND_LIGHT
public static final Theme.ThemeImpl BRAND_LIGHT
-
-
Method Detail
-
values
public static Theme.ThemeImpl[] 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 (Theme.ThemeImpl c : Theme.ThemeImpl.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Theme.ThemeImpl 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
-
toJSONString
public String toJSONString()
- Specified by:
toJSONString
in interfaceorg.zkoss.json.JSONAware
-
-