Package org.wicketstuff.jqplot.lib.data
Class AbstractCollectionData<T>
- java.lang.Object
-
- org.wicketstuff.jqplot.lib.data.AbstractCollectionData<T>
-
- All Implemented Interfaces:
Serializable,ChartData<Collection<T>>
- Direct Known Subclasses:
AreaFillData,BarData,BubbleData,LabeledData,LinedData,LineSeriesData,PieData,PieDonutData
public abstract class AbstractCollectionData<T> extends Object implements ChartData<Collection<T>>
Abstract class to help build end charts that uses collections.- Author:
- inaiat
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractCollectionData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddValue(T value)Add values to collection datavoidaddValues(Collection<T> value)Add values to collection datavoidaddValues(T... values)Add values to collection data-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.wicketstuff.jqplot.lib.data.ChartData
getData, size, toJsonString
-
-
-
-
Method Detail
-
addValues
public void addValues(Collection<T> value)
Add values to collection data- Parameters:
value- Collection of values
-
addValues
public void addValues(T... values)
Add values to collection data- Parameters:
values- Collection of values
-
addValue
public void addValue(T value)
Add values to collection data- Parameters:
value- generic value
-
-