📄 defaulthighlowdataset.java
字号:
/* ======================================
* JFreeChart : a free Java chart library
* ======================================
*
* Project Info: http://www.jfree.org/jfreechart/index.html
* Project Lead: David Gilbert (david.gilbert@object-refinery.com);
*
* (C) Copyright 2000-2003, by Object Refinery Limited and Contributors.
*
* This library is free software; you can redistribute it and/or modify it under the terms
* of the GNU Lesser General Public License as published by the Free Software Foundation;
* either version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*
* --------------------------
* DefaultHighLowDataset.java
* --------------------------
* (C) Copyright 2002, 2003, by Object Refinery Limited.
*
* Original Author: David Gilbert (for Object Refinery Limited);
* Contributor(s): -;
*
* $Id: DefaultHighLowDataset.java,v 1.2 2003/06/04 22:58:26 mungady Exp $
*
* Changes
* -------
* 21-Mar-2002 : Version 1 (DG);
* 07-Oct-2002 : Fixed errors reported by Checkstyle (DG);
*
*/
package org.jfree.data;
import java.util.Date;
/**
* A simple implementation of the HighLowDataset.
*
* @author David Gilbert
*/
public class DefaultHighLowDataset extends AbstractSeriesDataset implements HighLowDataset {
/** The series name. */
private String seriesName;
/** Storage for the dates. */
private Date[] date;
/** Storage for the high values. */
private Number[] high;
/** Storage for the low values. */
private Number[] low;
/** Storage for the open values. */
private Number[] open;
/** Storage for the close values. */
private Number[] close;
/** Storage for the volume values. */
private Number[] volume;
/**
* Constructs a new high/low/open/close dataset.
* <p>
* The current implementation allows only one series in the dataset.
* This may be extended in a future version.
*
* @param seriesName the name of the series.
* @param date the dates.
* @param high the high values.
* @param low the low values.
* @param open the open values.
* @param close the close values.
* @param volume the volume values.
*/
public DefaultHighLowDataset(String seriesName,
Date[] date,
double[] high, double[] low,
double[] open, double[] close,
double[] volume) {
this.seriesName = seriesName;
this.date = date;
this.high = createNumberArray(high);
this.low = createNumberArray(low);
this.open = createNumberArray(open);
this.close = createNumberArray(close);
this.volume = createNumberArray(volume);;
}
/**
* Returns the name of the series stored in this dataset.
*
* @param i the index of the series. Currently ignored.
* @return the name of this series.
*/
public String getSeriesName(int i) {
return this.seriesName;
}
/**
* Returns the x-value for one item in a series.
* <p>
* The value returned is a Long object generated from the underlying Date object.
*
* @param series the series (zero-based index).
* @param item the item (zero-based index).
*
* @return the x-value.
*/
public Number getXValue(int series, int item) {
return new Long(date[item].getTime());
}
/**
* Returns the x-value for one item in a series, as a Date.
* <p>
* This method is provided for convenience only.
*
* @param series the series (zero-based index).
* @param item the item (zero-based index).
*
* @return the x-value as a Date.
*/
public Date getXDate(int series, int item) {
return date[item];
}
/**
* Returns the y-value for one item in a series.
* <p>
* This method (from the XYDataset interface) is mapped to the getCloseValue(...) method.
*
* @param series the series (zero-based index).
* @param item the item (zero-based index).
*
* @return the y-value.
*/
public Number getYValue(int series, int item) {
return getCloseValue(series, item);
}
/**
* Returns the high-value for one item in a series.
*
* @param series the series (zero-based index).
* @param item the item (zero-based index).
*
* @return the high-value.
*/
public Number getHighValue(int series, int item) {
return high[item];
}
/**
* Returns the low-value for one item in a series.
*
* @param series the series (zero-based index).
* @param item the item (zero-based index).
*
* @return the low-value.
*/
public Number getLowValue(int series, int item) {
return low[item];
}
/**
* Returns the open-value for one item in a series.
*
* @param series the series (zero-based index).
* @param item the item (zero-based index).
*
* @return the open-value.
*/
public Number getOpenValue(int series, int item) {
return open[item];
}
/**
* Returns the close-value for one item in a series.
*
* @param series the series (zero-based index).
* @param item the item (zero-based index).
*
* @return the close-value.
*/
public Number getCloseValue(int series, int item) {
return close[item];
}
/**
* Returns the volume-value for one item in a series.
*
* @param series the series (zero-based index).
* @param item the item (zero-based index).
*
* @return the volume-value.
*/
public Number getVolumeValue(int series, int item) {
return volume[item];
}
/**
* Returns the number of series in the dataset.
* <p>
* This implementation only allows one series.
*
* @return the number of series.
*/
public int getSeriesCount() {
return 1;
}
/**
* Returns the number of items in the specified series.
*
* @param series the index (zero-based) of the series.
*
* @return the number of items in the specified series.
*/
public int getItemCount(int series) {
return date.length;
}
/**
* Constructs an array of Number objects from an array of doubles.
*
* @param data the double values to convert.
*
* @return data as array of Number.
*/
public static Number[] createNumberArray(double[] data) {
Number[] result = new Number[data.length];
for (int i = 0; i < data.length; i++) {
result[i] = new Double(data[i]);
}
return result;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -