Package org.jfree.chart.renderer.xy
Enum DensityPlotXYItemRenderer.DensityMode
- java.lang.Object
-
- java.lang.Enum<DensityPlotXYItemRenderer.DensityMode>
-
- org.jfree.chart.renderer.xy.DensityPlotXYItemRenderer.DensityMode
-
- All Implemented Interfaces:
Serializable
,Comparable<DensityPlotXYItemRenderer.DensityMode>
- Enclosing class:
- DensityPlotXYItemRenderer
public static enum DensityPlotXYItemRenderer.DensityMode extends Enum<DensityPlotXYItemRenderer.DensityMode>
Defines the calculation method for the density map.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DensityPlotXYItemRenderer.DensityMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static DensityPlotXYItemRenderer.DensityMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HISTOGRAM
public static final DensityPlotXYItemRenderer.DensityMode HISTOGRAM
-
KDE
public static final DensityPlotXYItemRenderer.DensityMode KDE
-
-
Method Detail
-
values
public static DensityPlotXYItemRenderer.DensityMode[] 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 (DensityPlotXYItemRenderer.DensityMode c : DensityPlotXYItemRenderer.DensityMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DensityPlotXYItemRenderer.DensityMode 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
-
-