Package com.inet.report.chart.plot
Enum AbstractPlot.GradientSetting
- java.lang.Object
-
- java.lang.Enum<AbstractPlot.GradientSetting>
-
- com.inet.report.chart.plot.AbstractPlot.GradientSetting
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AbstractPlot.GradientSetting>
- Enclosing class:
- AbstractPlot
public static enum AbstractPlot.GradientSetting extends java.lang.Enum<AbstractPlot.GradientSetting>
The gradient paint setting for the colorization of the chart items.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GradientHorizontal
GradientVertical
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractPlot.GradientSetting
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AbstractPlot.GradientSetting[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GradientHorizontal
public static final AbstractPlot.GradientSetting GradientHorizontal
-
GradientVertical
public static final AbstractPlot.GradientSetting GradientVertical
-
-
Method Detail
-
values
public static AbstractPlot.GradientSetting[] 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 (AbstractPlot.GradientSetting c : AbstractPlot.GradientSetting.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractPlot.GradientSetting 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
-
-