Package com.storedobject.chart
Class BoxplotData
java.lang.Object
- All Implemented Interfaces:
AbstractDataProvider<BoxplotData.Boxplot>,ComponentPart,ComponentProperty,Serializable,Cloneable,Iterable<BoxplotData.Boxplot>,Collection<BoxplotData.Boxplot>,List<BoxplotData.Boxplot>,RandomAccess,SequencedCollection<BoxplotData.Boxplot>
Represents a data structure for storing and managing boxplot data.
This class extends
AbstractData to handle a list of BoxplotData.Boxplot objects,
which represent individual boxplot data points.- Author:
- Syam
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final recordRepresents a boxplot data record with the key statistical parts of a boxplot.Nested classes/interfaces inherited from interface com.storedobject.chart.AbstractDataProvider
AbstractDataProvider.NumberComparator -
Field Summary
Fields inherited from class java.util.AbstractList
modCount -
Constructor Summary
ConstructorsConstructorDescriptionBoxplotData(BoxplotData.Boxplot... data) Constructs aBoxplotDataobject with the specified boxplot data points. -
Method Summary
Methods inherited from class com.storedobject.chart.AbstractData
asList, getDataType, getName, getSerial, setName, setSerial, streamMethods inherited from class java.util.ArrayList
add, add, addAll, addAll, addFirst, addLast, clear, clone, contains, ensureCapacity, equals, forEach, get, getFirst, getLast, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeFirst, removeIf, removeLast, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSizeMethods inherited from class java.util.AbstractCollection
containsAll, toStringMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.storedobject.chart.AbstractDataProvider
create, create, encode, encodeJSON, getComparator, getId, getMax, getMin, validateMethods inherited from interface java.util.Collection
parallelStream, toArrayMethods inherited from interface com.storedobject.chart.ComponentPart
className, getRenderingIndex, setRenderingIndexMethods inherited from interface java.util.List
containsAll, reversed
-
Constructor Details
-
BoxplotData
Constructs aBoxplotDataobject with the specified boxplot data points.- Parameters:
data- An array ofBoxplotobjects that represent the data points for the boxplots to be managed by this instance. EachBoxplotconsists of values for lower, Q1, median, Q3, and upper.
-