📄 timeperiodvaluescollection.java
字号:
// fetch the series name...
return getSeries(series).getName();
}
/**
* Adds a series to the collection. A {@link org.jfree.data.DatasetChangeEvent} is
* sent to all registered listeners.
*
* @param series the time series.
*/
public void addSeries(TimePeriodValues series) {
// check argument...
if (series == null) {
throw new IllegalArgumentException(
"TimePeriodValuesCollection.addSeries(...): cannot add null series.");
}
// add the series...
data.add(series);
series.addChangeListener(this);
fireDatasetChanged();
}
/**
* Removes the specified series from the collection.
*
* @param series the series to remove.
*/
public void removeSeries(TimePeriodValues series) {
// check argument...
if (series == null) {
throw new IllegalArgumentException(
"TimePeriodValuesCollection.addSeries(...): cannot add null series.");
}
// remove the series...
data.remove(series);
series.removeChangeListener(this);
fireDatasetChanged();
}
/**
* Removes a series from the collection.
*
* @param index the series index (zero-based).
*/
public void removeSeries(int index) {
TimePeriodValues series = getSeries(index);
if (series != null) {
removeSeries(series);
}
}
/**
* Returns the number of items in the specified series.
* <P>
* This method is provided for convenience.
*
* @param series The index of the series of interest (zero-based).
*
* @return the number of items in the specified series.
*/
public int getItemCount(int series) {
return getSeries(series).getItemCount();
}
/**
* Returns the x-value for the specified series and item.
*
* @param series The series (zero-based index).
* @param item The item (zero-based index).
*
* @return the x-value for the specified series and item.
*/
public Number getXValue(int series, int item) {
TimePeriodValues ts = (TimePeriodValues) data.get(series);
TimePeriodValue dp = ts.getDataItem(item);
TimePeriod period = dp.getPeriod();
return new Long(getX(period));
}
/**
* Returns the x-value for a time period.
*
* @param period the time period.
*
* @return the x-value.
*/
private long getX(TimePeriod period) {
long result = 0L;
if (this.xPosition == TimePeriodAnchor.START) {
result = period.getStart().getTime();
}
else if (this.xPosition == TimePeriodAnchor.MIDDLE) {
result = period.getStart().getTime() / 2 + period.getEnd().getTime() / 2;
}
else if (this.xPosition == TimePeriodAnchor.END) {
result = period.getEnd().getTime();
}
else {
throw new IllegalStateException("TimePeriodValuesCollection.getX(...).");
}
return result;
}
/**
* Returns the starting X value for the specified series and item.
*
* @param series The series (zero-based index).
* @param item The item (zero-based index).
*
* @return the starting X value for the specified series and item.
*/
public Number getStartXValue(int series, int item) {
TimePeriodValues ts = (TimePeriodValues) data.get(series);
TimePeriodValue dp = ts.getDataItem(item);
return new Long(dp.getPeriod().getStart().getTime());
}
/**
* Returns the ending X value for the specified series and item.
*
* @param series The series (zero-based index).
* @param item The item (zero-based index).
*
* @return the ending X value for the specified series and item.
*/
public Number getEndXValue(int series, int item) {
TimePeriodValues ts = (TimePeriodValues) data.get(series);
TimePeriodValue dp = ts.getDataItem(item);
return new Long(dp.getPeriod().getEnd().getTime());
}
/**
* Returns the y-value for the specified series and item.
*
* @param series The series (zero-based index).
* @param item The item (zero-based index).
*
* @return the y-value for the specified series and item.
*/
public Number getYValue(int series, int item) {
TimePeriodValues ts = (TimePeriodValues) data.get(series);
TimePeriodValue dp = ts.getDataItem(item);
return dp.getValue();
}
/**
* Returns the starting Y value for the specified series and item.
*
* @param series The series (zero-based index).
* @param item The item (zero-based index).
*
* @return the starting Y value for the specified series and item.
*/
public Number getStartYValue(int series, int item) {
return getYValue(series, item);
}
/**
* Returns the ending Y value for the specified series and item.
*
* @param series The series (zero-based index).
* @param item The item (zero-based index).
*
* @return the ending Y value for the specified series and item.
*/
public Number getEndYValue(int series, int item) {
return getYValue(series, item);
}
/**
* Returns the minimum value in the dataset (or null if all the values in
* the domain are null).
*
* @return the minimum value.
*/
public Number getMinimumDomainValue() {
Range r = getDomainRange();
return new Double(r.getLowerBound());
}
/**
* Returns the maximum value in the dataset (or null if all the values in
* the domain are null).
*
* @return the maximum value.
*/
public Number getMaximumDomainValue() {
Range r = getDomainRange();
return new Double(r.getUpperBound());
}
/**
* Returns the range of the values in the series domain.
*
* @return the range.
*/
public Range getDomainRange() {
Range result = null;
Range temp = null;
Iterator iterator = data.iterator();
while (iterator.hasNext()) {
TimePeriodValues series = (TimePeriodValues) iterator.next();
int count = series.getItemCount();
if (count > 0) {
TimePeriod start = series.getTimePeriod(series.getMinStartIndex());
TimePeriod end = series.getTimePeriod(series.getMaxEndIndex());
if (this.domainIsPointsInTime) {
if (this.xPosition == TimePeriodAnchor.START) {
TimePeriod maxStart = series.getTimePeriod(series.getMaxStartIndex());
temp = new Range(start.getStart().getTime(), maxStart.getStart().getTime());
}
else if (this.xPosition == TimePeriodAnchor.MIDDLE) {
TimePeriod minMiddle = series.getTimePeriod(series.getMinMiddleIndex());
long s1 = minMiddle.getStart().getTime();
long e1 = minMiddle.getEnd().getTime();
TimePeriod maxMiddle = series.getTimePeriod(series.getMaxMiddleIndex());
long s2 = maxMiddle.getStart().getTime();
long e2 = maxMiddle.getEnd().getTime();
temp = new Range(s1 + (e1 - s1) / 2, s2 + (e2 - s2) / 2);
}
else if (this.xPosition == TimePeriodAnchor.END) {
TimePeriod minEnd = series.getTimePeriod(series.getMinEndIndex());
temp = new Range(minEnd.getEnd().getTime(), end.getEnd().getTime());
}
}
else {
temp = new Range(start.getStart().getTime(), end.getEnd().getTime());
}
result = Range.combine(result, temp);
}
}
return result;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -