📄 defaultintervalxydataset.java
字号:
* @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
* within the specified range.
* @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
* within the specified range.
*
* @see #getEndXValue(int, int)
*/
public Number getEndX(int series, int item) {
return new Double(getEndXValue(series, item));
}
/**
* Returns the ending y-value for an item within a series.
*
* @param series the series index (in the range <code>0</code> to
* <code>getSeriesCount() - 1</code>).
* @param item the item index (in the range <code>0</code> to
* <code>getItemCount(series)</code>).
*
* @return The ending y-value.
*
* @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
* within the specified range.
* @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
* within the specified range.
*
* @see #getEndYValue(int, int)
*/
public Number getEndY(int series, int item) {
return new Double(getEndYValue(series, item));
}
/**
* Returns the starting x-value for an item within a series.
*
* @param series the series index (in the range <code>0</code> to
* <code>getSeriesCount() - 1</code>).
* @param item the item index (in the range <code>0</code> to
* <code>getItemCount(series)</code>).
*
* @return The starting x-value.
*
* @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
* within the specified range.
* @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
* within the specified range.
*
* @see #getStartXValue(int, int)
*/
public Number getStartX(int series, int item) {
return new Double(getStartXValue(series, item));
}
/**
* Returns the starting y-value for an item within a series.
*
* @param series the series index (in the range <code>0</code> to
* <code>getSeriesCount() - 1</code>).
* @param item the item index (in the range <code>0</code> to
* <code>getItemCount(series)</code>).
*
* @return The starting y-value.
*
* @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
* within the specified range.
* @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
* within the specified range.
*
* @see #getStartYValue(int, int)
*/
public Number getStartY(int series, int item) {
return new Double(getStartYValue(series, item));
}
/**
* Returns the x-value for an item within a series.
*
* @param series the series index (in the range <code>0</code> to
* <code>getSeriesCount() - 1</code>).
* @param item the item index (in the range <code>0</code> to
* <code>getItemCount(series)</code>).
*
* @return The x-value.
*
* @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
* within the specified range.
* @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
* within the specified range.
*
* @see #getXValue(int, int)
*/
public Number getX(int series, int item) {
return new Double(getXValue(series, item));
}
/**
* Returns the y-value for an item within a series.
*
* @param series the series index (in the range <code>0</code> to
* <code>getSeriesCount() - 1</code>).
* @param item the item index (in the range <code>0</code> to
* <code>getItemCount(series)</code>).
*
* @return The y-value.
*
* @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
* within the specified range.
* @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
* within the specified range.
*
* @see #getYValue(int, int)
*/
public Number getY(int series, int item) {
return new Double(getYValue(series, item));
}
/**
* Adds a series or if a series with the same key already exists replaces
* the data for that series, then sends a {@link DatasetChangeEvent} to
* all registered listeners.
*
* @param seriesKey the series key (<code>null</code> not permitted).
* @param data the data (must be an array with length 6, containing six
* arrays of equal length, the first containing the x-values and the
* second containing the y-values).
*/
public void addSeries(Comparable seriesKey, double[][] data) {
if (seriesKey == null) {
throw new IllegalArgumentException(
"The 'seriesKey' cannot be null.");
}
if (data == null) {
throw new IllegalArgumentException("The 'data' is null.");
}
if (data.length != 6) {
throw new IllegalArgumentException(
"The 'data' array must have length == 6.");
}
int length = data[0].length;
if (length != data[1].length || length != data[2].length
|| length != data[3].length || length != data[4].length
|| length != data[5].length) {
throw new IllegalArgumentException(
"The 'data' array must contain two arrays with equal length.");
}
int seriesIndex = indexOf(seriesKey);
if (seriesIndex == -1) { // add a new series
this.seriesKeys.add(seriesKey);
this.seriesList.add(data);
}
else { // replace an existing series
this.seriesList.remove(seriesIndex);
this.seriesList.add(seriesIndex, data);
}
notifyListeners(new DatasetChangeEvent(this, this));
}
/**
* Tests this <code>DefaultIntervalXYDataset</code> instance for equality
* with an arbitrary object. This method returns <code>true</code> if and
* only if:
* <ul>
* <li><code>obj</code> is not <code>null</code>;</li>
* <li><code>obj</code> is an instance of
* <code>DefaultIntervalXYDataset</code>;</li>
* <li>both datasets have the same number of series, each containing
* exactly the same values.</li>
* </ul>
*
* @param obj the object (<code>null</code> permitted).
*
* @return A boolean.
*/
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof DefaultIntervalXYDataset)) {
return false;
}
DefaultIntervalXYDataset that = (DefaultIntervalXYDataset) obj;
if (!this.seriesKeys.equals(that.seriesKeys)) {
return false;
}
for (int i = 0; i < this.seriesList.size(); i++) {
double[][] d1 = (double[][]) this.seriesList.get(i);
double[][] d2 = (double[][]) that.seriesList.get(i);
double[] d1x = d1[0];
double[] d2x = d2[0];
if (!Arrays.equals(d1x, d2x)) {
return false;
}
double[] d1xs = d1[1];
double[] d2xs = d2[1];
if (!Arrays.equals(d1xs, d2xs)) {
return false;
}
double[] d1xe = d1[2];
double[] d2xe = d2[2];
if (!Arrays.equals(d1xe, d2xe)) {
return false;
}
double[] d1y = d1[3];
double[] d2y = d2[3];
if (!Arrays.equals(d1y, d2y)) {
return false;
}
double[] d1ys = d1[4];
double[] d2ys = d2[4];
if (!Arrays.equals(d1ys, d2ys)) {
return false;
}
double[] d1ye = d1[5];
double[] d2ye = d2[5];
if (!Arrays.equals(d1ye, d2ye)) {
return false;
}
}
return true;
}
/**
* Returns a hash code for this instance.
*
* @return A hash code.
*/
public int hashCode() {
int result;
result = this.seriesKeys.hashCode();
result = 29 * result + this.seriesList.hashCode();
return result;
}
/**
* Returns a clone of this dataset.
*
* @return A clone.
*
* @throws CloneNotSupportedException if the dataset contains a series with
* a key that cannot be cloned.
*/
public Object clone() throws CloneNotSupportedException {
DefaultIntervalXYDataset clone
= (DefaultIntervalXYDataset) super.clone();
clone.seriesKeys = new java.util.ArrayList(this.seriesKeys);
clone.seriesList = new ArrayList(this.seriesList.size());
for (int i = 0; i < this.seriesList.size(); i++) {
double[][] data = (double[][]) this.seriesList.get(i);
double[] x = data[0];
double[] xStart = data[1];
double[] xEnd = data[2];
double[] y = data[3];
double[] yStart = data[4];
double[] yEnd = data[5];
double[] xx = new double[x.length];
double[] xxStart = new double[xStart.length];
double[] xxEnd = new double[xEnd.length];
double[] yy = new double[y.length];
double[] yyStart = new double[yStart.length];
double[] yyEnd = new double[yEnd.length];
System.arraycopy(x, 0, xx, 0, x.length);
System.arraycopy(xStart, 0, xxStart, 0, xStart.length);
System.arraycopy(xEnd, 0, xxEnd, 0, xEnd.length);
System.arraycopy(y, 0, yy, 0, y.length);
System.arraycopy(yStart, 0, yyStart, 0, yStart.length);
System.arraycopy(yEnd, 0, yyEnd, 0, yEnd.length);
clone.seriesList.add(i, new double[][] {xx, xxStart, xxEnd, yy,
yyStart, yyEnd});
}
return clone;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -