📄 timeperiodvalues.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. All rights reserved.
*
* 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.
*
* ---------------------
* TimePeriodValues.java
* ---------------------
* (C) Copyright 2003, by Object Refinery Limited.
*
* Original Author: David Gilbert (for Object Refinery Limited);
* Contributor(s): -;
*
* $Id: TimePeriodValues.java,v 1.6 2003/07/30 16:01:21 mungady Exp $
*
* Changes
* -------
* 22-Apr-2003 : Version 1 (DG);
* 30-Jul-2003 : Added clone and equals methods while testing (DG);
*
*/
package org.jfree.data.time;
import java.io.Serializable;
import java.util.List;
import org.jfree.data.Series;
import org.jfree.data.SeriesException;
/**
* A structure containing zero, one or many {@link TimePeriodValue} instances. The time periods
* can overlap, and are maintained in the order that they are added to the collection.
* <p>
* This is similar to the {@link TimeSeries} class, except that the time periods can have
* irregular lengths.
*
* @author David Gilbert
*/
public class TimePeriodValues extends Series implements Serializable {
/** Default value for the domain description. */
protected static final String DEFAULT_DOMAIN_DESCRIPTION = "Time";
/** Default value for the range description. */
protected static final String DEFAULT_RANGE_DESCRIPTION = "Value";
/** A description of the domain. */
private String domain;
/** A description of the range. */
private String range;
/** The list of data pairs in the series. */
private List data;
private int minStartIndex = -1;
private int maxStartIndex = -1;
private int minMiddleIndex = -1;
private int maxMiddleIndex = -1;
private int minEndIndex = -1;
private int maxEndIndex = -1;
/**
* Creates a new (empty) collection of time period values.
*
* @param name the name of the series.
*/
public TimePeriodValues(String name) {
this(name,
DEFAULT_DOMAIN_DESCRIPTION,
DEFAULT_RANGE_DESCRIPTION);
}
/**
* Creates a new time series that contains no data.
* <P>
* Descriptions can be specified for the domain and range. One situation
* where this is helpful is when generating a chart for the time series -
* axis labels can be taken from the domain and range description.
*
* @param name the name of the series.
* @param domain the domain description.
* @param range the range description.
*/
public TimePeriodValues(String name, String domain, String range) {
super(name);
this.domain = domain;
this.range = range;
data = new java.util.ArrayList();
}
/**
* Returns the domain description.
*
* @return the domain description.
*/
public String getDomainDescription() {
return this.domain;
}
/**
* Sets the domain description.
* <P>
* A property change event is fired, and an undoable edit is posted.
*
* @param description the new description.
*/
public void setDomainDescription(String description) {
String old = this.domain;
this.domain = description;
firePropertyChange("Domain", old, description);
}
/**
* Returns the range description.
*
* @return the range description.
*/
public String getRangeDescription() {
return this.range;
}
/**
* Sets the range description.
* <P>
* Registered listeners are notified of the change.
*
* @param description the new description.
*/
public void setRangeDescription(String description) {
String old = this.range;
this.range = description;
firePropertyChange("Range", old, description);
}
/**
* Returns the number of items in the series.
*
* @return the item count.
*/
public int getItemCount() {
return data.size();
}
/**
* Returns one data item for the series.
*
* @param index the item index (zero-based).
*
* @return one data item for the series.
*/
public TimePeriodValue getDataItem(int index) {
return (TimePeriodValue) data.get(index);
}
/**
* Returns the time period at the specified index.
*
* @param index the index of the data pair.
*
* @return the time period at the specified index.
*/
public TimePeriod getTimePeriod(int index) {
return getDataItem(index).getPeriod();
}
/**
* Returns the value at the specified index.
*
* @param index index of a value.
*
* @return the value at the specified index.
*/
public Number getValue(int index) {
return getDataItem(index).getValue();
}
/**
* Adds a data item to the series.
*
* @param item the (timeperiod, value) pair.
*
* @throws SeriesException if there is a problem adding the data.
*/
public void add(TimePeriodValue item) throws SeriesException {
// check arguments...
if (item == null) {
throw new IllegalArgumentException("TimePeriodValues.add(...): null item not allowed.");
}
// make the change
this.data.add(item);
updateBounds(item.getPeriod(), this.data.size() - 1);
}
private void updateBounds(TimePeriod period, int index) {
long start = period.getStart().getTime();
long end = period.getEnd().getTime();
long middle = start + ((end - start) / 2);
if (this.minStartIndex >= 0) {
long minStart = getDataItem(this.minStartIndex).getPeriod().getStart().getTime();
if (start < minStart) {
this.minStartIndex = index;
}
}
else {
this.minStartIndex = index;
}
if (this.maxStartIndex >= 0) {
long maxStart = getDataItem(this.maxStartIndex).getPeriod().getStart().getTime();
if (start > maxStart) {
this.maxStartIndex = index;
}
}
else {
this.maxStartIndex = index;
}
if (this.minMiddleIndex >= 0) {
long s = getDataItem(this.minMiddleIndex).getPeriod().getStart().getTime();
long e = getDataItem(this.minMiddleIndex).getPeriod().getEnd().getTime();
long minMiddle = s + (e - s) / 2;
if (middle < minMiddle) {
this.minMiddleIndex = index;
}
}
else {
this.minMiddleIndex = index;
}
if (this.maxMiddleIndex >= 0) {
long s = getDataItem(this.minMiddleIndex).getPeriod().getStart().getTime();
long e = getDataItem(this.minMiddleIndex).getPeriod().getEnd().getTime();
long maxMiddle = s + (e - s) / 2;
if (middle > maxMiddle) {
this.maxMiddleIndex = index;
}
}
else {
this.maxMiddleIndex = index;
}
if (this.minEndIndex >= 0) {
long minEnd = getDataItem(this.minEndIndex).getPeriod().getEnd().getTime();
if (end < minEnd) {
this.minEndIndex = index;
}
}
else {
this.minEndIndex = index;
}
if (this.maxEndIndex >= 0) {
long maxEnd = getDataItem(this.maxEndIndex).getPeriod().getEnd().getTime();
if (end > maxEnd) {
this.maxEndIndex = index;
}
}
else {
this.maxEndIndex = index;
}
}
private void recalculateBounds() {
for (int i = 0; i < this.data.size(); i++) {
TimePeriodValue tpv = (TimePeriodValue) this.data.get(i);
updateBounds(tpv.getPeriod(), i);
}
}
/**
* Adds a new data item to the series.
*
* @param period the time period.
* @param value the value.
*
* @throws SeriesException if there is a problem adding the data.
*/
public void add(TimePeriod period, double value) throws SeriesException {
TimePeriodValue item = new TimePeriodValue(period, value);
add(item);
}
/**
* Adds a new data item to the series.
*
* @param period the time period.
* @param value the value.
*
* @throws SeriesException if there is a problem adding the data.
*/
public void add(TimePeriod period, Number value) throws SeriesException {
TimePeriodValue item = new TimePeriodValue(period, value);
add(item);
}
/**
* Updates (changes) the value of a data item.
*
* @param index the index of the data item to update.
* @param value the new value.
*/
public void update(int index, Number value) {
TimePeriodValue item = getDataItem(index);
item.setValue(value);
fireSeriesChanged();
}
/**
* Deletes data from start until end index (end inclusive).
*
* @param start the index of the first period to delete.
* @param end the index of the last period to delete.
*/
public void delete(int start, int end) {
for (int i = 0; i <= (end - start); i++) {
this.data.remove(start);
}
recalculateBounds();
fireSeriesChanged();
}
/**
* Tests the series for equality with another object.
*
* @param object the object.
*
* @return <code>true</code> or <code>false</code>.
*/
public boolean equals(Object object) {
if (object == null) {
return false;
}
if (object == this) {
return true;
}
boolean result = super.equals(object);
if (object instanceof TimePeriodValues) {
TimePeriodValues tpvs = (TimePeriodValues) object;
boolean b1 = getDomainDescription().equals(tpvs.getDomainDescription());
boolean b2 = getRangeDescription().equals(tpvs.getRangeDescription());
result = result && b1 && b2;
if (result == true) {
boolean match = true;
int count = getItemCount();
if (count == tpvs.getItemCount()) {
for (int i = 0; i < count; i++) {
match = match && getDataItem(i).equals(tpvs.getDataItem(i));
if (!match) {
continue;
}
}
result = match;
}
else {
result = false;
}
}
}
return result;
}
/**
* Returns a clone of the collection.
* <P>
* Notes:
* <ul>
* <li>
* no need to clone the domain and range descriptions, since String object is immutable;
* </li>
* <li>
* we pass over to the more general method createCopy(start, end).
* </li>
* </ul>
*
* @return a clone of the time series.
*/
public Object clone() {
Object clone = createCopy(0, getItemCount() - 1);
return clone;
}
/**
* Creates a new instance by copying a subset of the data in this collection.
*
* @param start the index of the first item to copy.
* @param end the index of the last item to copy.
*
* @return A copy of a subset of the items.
*/
public TimePeriodValues createCopy(int start, int end) {
TimePeriodValues copy = (TimePeriodValues) super.clone();
copy.data = new java.util.ArrayList();
if (data.size() > 0) {
for (int index = start; index <= end; index++) {
TimePeriodValue item = (TimePeriodValue) this.data.get(index);
TimePeriodValue clone = (TimePeriodValue) item.clone();
try {
copy.add(clone);
}
catch (SeriesException e) {
System.err.println("TimePeriodValues.createCopy(): unable to add cloned item.");
}
}
}
return copy;
}
public int getMinStartIndex() {
return this.minStartIndex;
}
public int getMaxStartIndex() {
return this.maxStartIndex;
}
public int getMinMiddleIndex() {
return this.minMiddleIndex;
}
public int getMaxMiddleIndex() {
return this.maxMiddleIndex;
}
public int getMinEndIndex() {
return this.minEndIndex;
}
public int getMaxEndIndex() {
return this.maxEndIndex;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -