Package com.storedobject.chart
Interface DateDataProvider
- All Superinterfaces:
AbstractDataProvider<LocalDate>
,ComponentPart
,ComponentProperty
- All Known Implementing Classes:
DateData
Data provider of date values.
- Author:
- Syam
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.storedobject.chart.AbstractDataProvider
AbstractDataProvider.NumberComparator
-
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
add
(long timeInMillis) Add a date value as time in milliseconds.boolean
Add a date value.default boolean
Add a date value.default Comparator
<LocalDate> This comparator, if available, will be used to determine the min/max values of the data if required by theAbstractDataProvider.getMin()
andAbstractDataProvider.getMax()
methods.default DataType
Get the value type of the data.Methods inherited from interface com.storedobject.chart.AbstractDataProvider
asList, create, create, encode, encodeJSON, getId, getMax, getMin, getName, stream, validate
Methods inherited from interface com.storedobject.chart.ComponentPart
className, getRenderingIndex, getSerial, setName, setRenderingIndex, setSerial
-
Method Details
-
getDataType
Description copied from interface:AbstractDataProvider
Get the value type of the data.- Specified by:
getDataType
in interfaceAbstractDataProvider<LocalDate>
- Returns:
- value type.
-
add
Add a date value.- Parameters:
date
- Date value to add.- Returns:
- True if added. Otherwise, false.
-
add
Add a date value.- Parameters:
date
- Date value to add.- Returns:
- True if added. Otherwise, false.
-
add
default boolean add(long timeInMillis) Add a date value as time in milliseconds.- Parameters:
timeInMillis
- Time in milliseconds.- Returns:
- True if added. Otherwise, false.
-
getComparator
Description copied from interface:AbstractDataProvider
This comparator, if available, will be used to determine the min/max values of the data if required by theAbstractDataProvider.getMin()
andAbstractDataProvider.getMax()
methods.- Specified by:
getComparator
in interfaceAbstractDataProvider<LocalDate>
- Returns:
- Comparator. (Default is null).
-