Package org.wicketstuff.jqplot.lib
Enum JqPlotResources
- java.lang.Object
-
- java.lang.Enum<JqPlotResources>
-
- org.wicketstuff.jqplot.lib.JqPlotResources
-
- All Implemented Interfaces:
Serializable,Comparable<JqPlotResources>
public enum JqPlotResources extends Enum<JqPlotResources>
Resources of JqPlot aka Plugins.- Author:
- inaiat
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AxisTickRendererThe Axis tick renderer.BarRendererThe Bar renderer.BubbleRendererThe Bubble renderer.CanvasAxisLabelRendererThe Canvas axis label renderer.CanvasAxisTickRendererThe Canvas axis tick renderer.CanvasOverlayThe CanvasOverlay renderer.CanvasTextRendererThe Canvas text renderer.CategoryAxisRendererThe Category axis renderer.CursorThe Cursor.DateAxisRendererThe Date axis renderer.DefaultTickFormatterA class of a formatter for the tick text.DonutRendererThe Donut renderer.EnhancedLegendRendererHighlighterThe Highlighter.MeterGaugeRendererThe Meter gauge renderer.PieRendererThe Pie renderer.PointLabelsThe Point labels.ShadowRendererThe Shadow renderer.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetClassName()Gets the class name.StringgetResource()Gets the resource.StringtoString()static JqPlotResourcesvalueOf(String name)Returns the enum constant of this type with the specified name.static JqPlotResources[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Highlighter
public static final JqPlotResources Highlighter
The Highlighter.
-
Cursor
public static final JqPlotResources Cursor
The Cursor.
-
BarRenderer
public static final JqPlotResources BarRenderer
The Bar renderer.
-
BubbleRenderer
public static final JqPlotResources BubbleRenderer
The Bubble renderer.
-
PieRenderer
public static final JqPlotResources PieRenderer
The Pie renderer.
-
DonutRenderer
public static final JqPlotResources DonutRenderer
The Donut renderer.
-
CanvasAxisLabelRenderer
public static final JqPlotResources CanvasAxisLabelRenderer
The Canvas axis label renderer.
-
CategoryAxisRenderer
public static final JqPlotResources CategoryAxisRenderer
The Category axis renderer.
-
CanvasAxisTickRenderer
public static final JqPlotResources CanvasAxisTickRenderer
The Canvas axis tick renderer.
-
CanvasTextRenderer
public static final JqPlotResources CanvasTextRenderer
The Canvas text renderer.
-
CanvasOverlay
public static final JqPlotResources CanvasOverlay
The CanvasOverlay renderer.
-
DateAxisRenderer
public static final JqPlotResources DateAxisRenderer
The Date axis renderer.
-
MeterGaugeRenderer
public static final JqPlotResources MeterGaugeRenderer
The Meter gauge renderer.
-
PointLabels
public static final JqPlotResources PointLabels
The Point labels.
-
ShadowRenderer
public static final JqPlotResources ShadowRenderer
The Shadow renderer.
-
AxisTickRenderer
public static final JqPlotResources AxisTickRenderer
The Axis tick renderer.
-
EnhancedLegendRenderer
public static final JqPlotResources EnhancedLegendRenderer
-
DefaultTickFormatter
public static final JqPlotResources DefaultTickFormatter
A class of a formatter for the tick text.
-
-
Method Detail
-
values
public static JqPlotResources[] 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 (JqPlotResources c : JqPlotResources.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JqPlotResources 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<JqPlotResources>
-
getClassName
public String getClassName()
Gets the class name.- Returns:
- the class name
-
getResource
public String getResource()
Gets the resource.- Returns:
- the resource
-
-