Class StockEntry
- java.lang.Object
-
- org.eclipse.birt.chart.extension.datafeed.StockEntry
-
- All Implemented Interfaces:
IDataPointEntry
public final class StockEntry extends java.lang.Object implements IDataPointEntry
StockEntry
-
-
Constructor Summary
Constructors Constructor Description StockEntry(double dOpen, double dLow, double dHigh, double dClose)
StockEntry(java.lang.Object[] oaFourComponents)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getClose()
java.lang.String
getFormattedString(java.lang.String type, FormatSpecifier formatter, com.ibm.icu.util.ULocale locale)
Returns the formatted string representation of current object by given formatter and locale.java.lang.String
getFormattedString(FormatSpecifier formatter, com.ibm.icu.util.ULocale locale)
Returns the formatted string representation of current object by given formatter and locale.double
getHigh()
double
getLow()
double
getOpen()
boolean
isValid()
Returns if the DataPointEntry is valid.void
setClose(double close)
void
setHigh(double high)
void
setLow(double low)
void
setOpen(double open)
java.lang.String
toString()
-
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getClose
public double getClose()
- Returns:
- Returns the close.
-
setClose
public void setClose(double close)
- Parameters:
close
- The close to set.
-
getHigh
public double getHigh()
- Returns:
- Returns the high.
-
setHigh
public void setHigh(double high)
- Parameters:
high
- The high to set.
-
getLow
public double getLow()
- Returns:
- Returns the low.
-
setLow
public void setLow(double low)
- Parameters:
low
- The low to set.
-
getOpen
public double getOpen()
- Returns:
- Returns the open.
-
setOpen
public void setOpen(double open)
- Parameters:
open
- The open to set.
-
getFormattedString
public java.lang.String getFormattedString(java.lang.String type, FormatSpecifier formatter, com.ibm.icu.util.ULocale locale)
Description copied from interface:IDataPointEntry
Returns the formatted string representation of current object by given formatter and locale.- Specified by:
getFormattedString
in interfaceIDataPointEntry
- Parameters:
type
- data point typeformatter
- An formatterlocale
- Specific locale.- Returns:
- The string representation
- See Also:
#getDataPointTypes()
-
getFormattedString
public java.lang.String getFormattedString(FormatSpecifier formatter, com.ibm.icu.util.ULocale locale)
Description copied from interface:IDataPointEntry
Returns the formatted string representation of current object by given formatter and locale.- Specified by:
getFormattedString
in interfaceIDataPointEntry
- Parameters:
formatter
- An formatterlocale
- Specific locale.- Returns:
- The string representation
-
isValid
public boolean isValid()
Description copied from interface:IDataPointEntry
Returns if the DataPointEntry is valid.- Specified by:
isValid
in interfaceIDataPointEntry
- Returns:
- value or not
-
-