Package com.storedobject.chart
Interface AbstractDataProvider<T>
- Type Parameters:
T
- Data class type.
- All Superinterfaces:
ComponentPart
,ComponentProperty
- All Known Subinterfaces:
CategoryDataProvider
,DataProvider
,DateDataProvider
,InternalData<T>
,TimeDataProvider
- All Known Implementing Classes:
AbstractData
,AbstractDataStream
,BasicDataProvider
,BasicInternalDataProvider
,CandlestickData
,CategoryData
,Data
,DataStream
,DateData
,DateStream
,FunctionData
,InternalData.WrappedDataProvider
,SankeyData
,SerialData
,SerialDate
,SerialTime
,TimeData
,TimeStream
Abstract data provider interface. The type of data can be anything that can be used
for charting. In charting, we need to distinguish between "numeric", "date/time", "categories" and "logarithmic"
values types. (See
DataType
).- Author:
- Syam
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic class
-
Method Summary
Modifier and TypeMethodDescriptionasList()
Collect all data values into a list.default <D> AbstractDataProvider
<D> create
(DataType convertedType, BiFunction<T, Integer, D> mappingFunction) Create another data set by applying a mapping function to this data set.default <D> AbstractDataProvider
<D> Create another data set by applying a mapping function to this data set.default void
encode
(StringBuilder sb, T value) Encode a value for this data.default void
Encode the JSON string with the properties of this.default Comparator
<T> Get the value type of the data.default long
getId()
Each part should have a unique Id.default T
getMax()
Get the maximum value from this data.default T
getMin()
Get the minimum value from this data.default String
getName()
Get the name of this part.stream()
Data provided by this provider as a stream.default void
validate()
This method is invoked bySOChart
to check if the component or part is valid or not.Methods inherited from interface com.storedobject.chart.ComponentPart
className, getRenderingIndex, getSerial, setName, setRenderingIndex, setSerial
-
Method Details
-
stream
-
asList
-
getDataType
-
getName
Description copied from interface:ComponentPart
Get the name of this part.- Specified by:
getName
in interfaceComponentPart
- Returns:
- Name
-
encodeJSON
Description copied from interface:ComponentProperty
Encode the JSON string with the properties of this.- Specified by:
encodeJSON
in interfaceComponentProperty
- Parameters:
sb
- Encoded JSON string to be appended to this.
-
encode
Encode a value for this data.- Parameters:
sb
- Encoded value will be appended here.value
- Value to encode.
-
getId
default long getId()Description copied from interface:ComponentPart
Each part should have a unique Id. (It can be a final variable and can be set by callingID.newID()
.- Specified by:
getId
in interfaceComponentPart
- Returns:
- Unique Id.
-
validate
Description copied from interface:ComponentPart
This method is invoked bySOChart
to check if the component or part is valid or not.- Specified by:
validate
in interfaceComponentPart
- Throws:
ChartException
- Raises exception if the component or part is not valid.
-
getMin
Get the minimum value from this data. This is used by certain components such asVisualMap
to automatically find out the minimum value of a value-based chart.The default implementation tries to use the
Comparator
returned by thegetComparator()
method to determine this value. If noComparator
is available,null
will be returned.- Returns:
- Minimum value of the data.
-
getMax
Get the maximum value from this data. This is used by certain components such asVisualMap
to automatically find out the minimum value of a value-based chart.The default implementation tries to use the
Comparator
returned by thegetComparator()
method to determine this value. If noComparator
is available,null
will be returned.- Returns:
- Minimum value of the data.
-
getComparator
-
create
default <D> AbstractDataProvider<D> create(DataType convertedType, BiFunction<T, Integer, D> mappingFunction) Create another data set by applying a mapping function to this data set. (Each item and its index are passed to the mapping function).- Type Parameters:
D
- Type of data in the target data set.- Parameters:
convertedType
- Converted type.mappingFunction
- Mapping function.- Returns:
- A new data set with values mapped from this data set.
-
create
Create another data set by applying a mapping function to this data set. (Each item is passed to the mapping function).- Type Parameters:
D
- Type of data in the target data set.- Parameters:
convertedType
- Converted type.mappingFunction
- Mapping function.- Returns:
- A new data set with values mapped from this data set.
-