Package com.iizix.prop.ui.chart
Enum ChartTheme
- java.lang.Object
- java.lang.Enum<ChartTheme>
- com.iizix.prop.ui.chart.ChartTheme
- All Implemented Interfaces:
IPropCnrChoiceOption<IChartChoiceOption>
,IChartChoiceOption
,java.io.Serializable
,java.lang.Comparable<ChartTheme>
public enum ChartTheme extends java.lang.Enum<ChartTheme> implements IChartChoiceOption
The chart theme option.- Author:
- Christopher Mindus
Enum Constant Summary
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ChartTheme[]
enumValues()
Gets all the choices possible, including default.ChartTheme
getDefault()
Gets the default value.int
getInt()
Returns the choice as an integer value.java.lang.String
getPropName()
Gets the property name.static ChartTheme
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ChartTheme[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
Enum Constant Detail
Gradient_Julie
public static final ChartTheme Gradient_Julie
Gradient_ThreeD
public static final ChartTheme Gradient_ThreeD
Gradient_Chris
public static final ChartTheme Gradient_Chris
Gradient_Tom
public static final ChartTheme Gradient_Tom
Gradient_Claro
public static final ChartTheme Gradient_Claro
Gradient_PrimaryColors
public static final ChartTheme Gradient_PrimaryColors
Gradient_Electric
public static final ChartTheme Gradient_Electric
Gradient_Charged
public static final ChartTheme Gradient_Charged
Gradient_Renkoo
public static final ChartTheme Gradient_Renkoo
Classic_Adobebricks
public static final ChartTheme Classic_Adobebricks
Classic_Algae
public static final ChartTheme Classic_Algae
Classic_Bahamation
public static final ChartTheme Classic_Bahamation
Classic_BlueDusk
public static final ChartTheme Classic_BlueDusk
Classic_CubanShirts
public static final ChartTheme Classic_CubanShirts
Classic_Desert
public static final ChartTheme Classic_Desert
Classic_Distinctive
public static final ChartTheme Classic_Distinctive
Classic_Dollar
public static final ChartTheme Classic_Dollar
Classic_Grasshopper
public static final ChartTheme Classic_Grasshopper
Classic_Grasslands
public static final ChartTheme Classic_Grasslands
Classic_GreySkies
public static final ChartTheme Classic_GreySkies
Classic_Harmony
public static final ChartTheme Classic_Harmony
Classic_IndigoNation
public static final ChartTheme Classic_IndigoNation
Classic_Ireland
public static final ChartTheme Classic_Ireland
Classic_MiamiNice
public static final ChartTheme Classic_MiamiNice
Classic_Midwest
public static final ChartTheme Classic_Midwest
Classic_Minty
public static final ChartTheme Classic_Minty
Classic_PurpleRain
public static final ChartTheme Classic_PurpleRain
Classic_RoyalPurples
public static final ChartTheme Classic_RoyalPurples
Classic_SageToLime
public static final ChartTheme Classic_SageToLime
Classic_Shrooms
public static final ChartTheme Classic_Shrooms
Classic_Tufte
public static final ChartTheme Classic_Tufte
Classic_WatersEdge
public static final ChartTheme Classic_WatersEdge
Classic_Wetland
public static final ChartTheme Classic_Wetland
PlotKit_blue
public static final ChartTheme PlotKit_blue
PlotKit_cyan
public static final ChartTheme PlotKit_cyan
PlotKit_green
public static final ChartTheme PlotKit_green
PlotKit_orange
public static final ChartTheme PlotKit_orange
PlotKit_purple
public static final ChartTheme PlotKit_purple
PlotKit_red
public static final ChartTheme PlotKit_red
Method Detail
values
public static ChartTheme[] 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 (ChartTheme c : ChartTheme.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
valueOf
public static ChartTheme valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
getDefault
public ChartTheme getDefault()
Gets the default value. This value is used to initialize the property.- Specified by:
getDefault
in interfaceIPropCnrChoiceOption<IChartChoiceOption>
- Returns:
Gradient_Julie
.
enumValues
public ChartTheme[] enumValues()
Gets all the choices possible, including default.- Specified by:
enumValues
in interfaceIPropCnrChoiceOption<IChartChoiceOption>
getInt
public int getInt()
Returns the choice as an integer value.- Specified by:
getInt
in interfaceIPropCnrChoiceOption<IChartChoiceOption>
getPropName
public java.lang.String getPropName()
Gets the property name.- Specified by:
getPropName
in interfaceIPropCnrChoiceOption<IChartChoiceOption>