Package com.storedobject.chart
Record Class InternalData.WrappedDataProvider<T>
java.lang.Object
java.lang.Record
com.storedobject.chart.InternalData.WrappedDataProvider<T>
- Type Parameters:
T
- Type of the data provider.- Record Components:
dataProvider
- Data provider.
- All Implemented Interfaces:
AbstractDataProvider<T>
,ComponentPart
,ComponentProperty
,InternalData<T>
,InternalDataProvider
- Enclosing interface:
InternalData<T>
public static record InternalData.WrappedDataProvider<T>(AbstractDataProvider<T> dataProvider)
extends Record
implements InternalData<T>
A wrapper class to convert any instance of
AbstractDataProvider
to an instance of
InternalDataProvider
.- Author:
- Syam
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.storedobject.chart.AbstractDataProvider
AbstractDataProvider.NumberComparator
Nested classes/interfaces inherited from interface com.storedobject.chart.InternalData
InternalData.WrappedDataProvider<T>
-
Constructor Summary
ConstructorsConstructorDescriptionWrappedDataProvider
(AbstractDataProvider<T> dataProvider) Creates an instance of aWrappedDataProvider
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedataProvider
record component.final boolean
Indicates whether some other object is "equal to" this one.Get the value type of the data.int
Get the current serial number (Serial number used internal purposes only).final int
hashCode()
Returns a hash code value for this object.void
setSerial
(int serial) Set a serial number (Serial number used internal purposes only).stream()
Data provided by this provider as a stream.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.storedobject.chart.AbstractDataProvider
asList, create, create, encode, encodeJSON, getComparator, getId, getMax, getMin, getName, validate
Methods inherited from interface com.storedobject.chart.ComponentPart
className, getRenderingIndex, setName, setRenderingIndex
-
Constructor Details
-
WrappedDataProvider
Creates an instance of aWrappedDataProvider
record class.- Parameters:
dataProvider
- the value for thedataProvider
record component
-
-
Method Details
-
stream
Description copied from interface:AbstractDataProvider
Data provided by this provider as a stream.Note: The
Stream
should be reproducible after a terminal operation.- Specified by:
stream
in interfaceAbstractDataProvider<T>
- Returns:
- Stream of data values.
-
getDataType
Description copied from interface:AbstractDataProvider
Get the value type of the data.- Specified by:
getDataType
in interfaceAbstractDataProvider<T>
- Returns:
- value type.
-
setSerial
public void setSerial(int serial) Description copied from interface:ComponentPart
Set a serial number (Serial number used internal purposes only). The implementation of this method must be in such a way that the serial number set here must be returned by theComponentPart.getSerial()
method.- Specified by:
setSerial
in interfaceComponentPart
- Parameters:
serial
- Serial number to set.
-
getSerial
public int getSerial()Description copied from interface:ComponentPart
Get the current serial number (Serial number used internal purposes only). The serial number set by theComponentPart.setSerial(int)
method should be returned by this method.- Specified by:
getSerial
in interfaceComponentPart
- Returns:
- Current serial number.
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
dataProvider
Returns the value of thedataProvider
record component.- Returns:
- the value of the
dataProvider
record component
-