Class OHLC

java.lang.Object
org.jfree.data.time.ohlc.OHLC
All Implemented Interfaces:
Serializable

public class OHLC extends Object implements Serializable
A data record containing open-high-low-close data (immutable). This class is used internally by the OHLCItem class.
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
    OHLC(double open, double high, double low, double close)
    Creates a new instance of OHLC.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Tests this instance for equality with an arbitrary object.
    double
    Returns the close value.
    double
    Returns the high value.
    double
    Returns the low value.
    double
    Returns the open value.
    int
    Returns a hash code for this instance.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • OHLC

      public OHLC(double open, double high, double low, double close)
      Creates a new instance of OHLC.
      Parameters:
      open - the open value.
      high - the high value.
      low - the low value.
      close - the close value.
  • Method Details

    • getOpen

      public double getOpen()
      Returns the open value.
      Returns:
      The open value.
    • getClose

      public double getClose()
      Returns the close value.
      Returns:
      The close value.
    • getHigh

      public double getHigh()
      Returns the high value.
      Returns:
      The high value.
    • getLow

      public double getLow()
      Returns the low value.
      Returns:
      The low value.
    • equals

      public boolean equals(Object obj)
      Tests this instance for equality with an arbitrary object.
      Overrides:
      equals in class Object
      Parameters:
      obj - the object (null permitted).
      Returns:
      A boolean.
    • hashCode

      public int hashCode()
      Returns a hash code for this instance.
      Overrides:
      hashCode in class Object
      Returns:
      A hash code.