Package org.eclipse.birt.chart.datafeed
Interface IDataPointEntry
- All Known Implementing Classes:
BubbleEntry
,DifferenceEntry
,NumberDataPointEntry
,StockEntry
public interface IDataPointEntry
The entry is a data point that is usually made up of several data. It is
responsible for formatting the entry according to the formatter and locale.
-
Method Summary
Modifier and TypeMethodDescriptiongetFormattedString
(String type, FormatSpecifier formatter, com.ibm.icu.util.ULocale locale) Returns the formatted string representation of current object by given formatter and locale.getFormattedString
(FormatSpecifier formatter, com.ibm.icu.util.ULocale locale) Returns the formatted string representation of current object by given formatter and locale.boolean
isValid()
Returns if the DataPointEntry is valid.
-
Method Details
-
getFormattedString
Returns the formatted string representation of current object by given formatter and locale.- Parameters:
formatter
- An formatterlocale
- Specific locale.- Returns:
- The string representation
-
getFormattedString
Returns the formatted string representation of current object by given formatter and locale.- Parameters:
type
- data point typeformatter
- An formatterlocale
- Specific locale.- Returns:
- The string representation
- See Also:
-
#getDataPointTypes()
-
isValid
boolean isValid()Returns if the DataPointEntry is valid.- Returns:
- value or not
- Since:
- 2.5.0
-