⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timeseriesdataitem.java

📁 这是一个segy数据显示程序
💻 JAVA
字号:
/* =========================================================== * JFreeChart : a free chart library for the Java(tm) platform * =========================================================== * * (C) Copyright 2000-2004, by Object Refinery Limited and Contributors. * * Project Info:  http://www.jfree.org/jfreechart/index.html * * 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. * * [Java is a trademark or registered trademark of Sun Microsystems, Inc.  * in the United States and other countries.] * * ----------------------- * TimeSeriesDataItem.java * ----------------------- * (C) Copyright 2001-2004, by Object Refinery Limited. * * Original Author:  David Gilbert (for Object Refinery Limited); * Contributor(s):   -; * * $Id: TimeSeriesDataItem.java,v 1.12 2004/06/02 09:43:25 mungady Exp $ * * Changes * ------- * 11-Oct-2001 : Version 1 (DG); * 15-Nov-2001 : Updated Javadoc comments (DG); * 29-Nov-2001 : Added cloning (DG); * 24-Jun-2002 : Removed unnecessary import (DG); * 07-Oct-2002 : Fixed errors reported by Checkstyle (DG); * 13-Mar-2003 : Renamed TimeSeriesDataPair --> TimeSeriesDataItem, moved to *               com.jrefinery.data.time package, implemented Serializable (DG) */package org.jfree.data.time;import java.io.Serializable;/** * Represents one data item in a time series. * <P> * The time period can be any of the following: * <ul> * <li>{@link Year}</li> * <li>{@link Quarter}</li> * <li>{@link Month}</li> * <li>{@link Week}</li> * <li>{@link Day}</li> * <li>{@link Hour}</li> * <li>{@link Minute}</li> * <li>{@link Second}</li> * <li>{@link Millisecond}</li> * <li>{@link FixedMillisecond}</li> * </ul> * * The time period is an immutable property of the data item.  Data items will * often be sorted within a list, and allowing the time period to be changed * could destroy the sort order. * <P> * Implements the <code>Comparable</code> interface so that standard Java sorting can be * used to keep the data items in order. * */public class TimeSeriesDataItem implements Cloneable, Comparable, Serializable {    /** The time period. */    private RegularTimePeriod period;    /** The value associated with the time period. */    private Number value;    /**     * Constructs a new data item that associates a value with a time period.     *     * @param period  the time period (<code>null</code> not permitted).     * @param value  the value (<code>null</code> permitted).     */    public TimeSeriesDataItem(final RegularTimePeriod period, final Number value) {        if (period == null) {            throw new IllegalArgumentException("Null 'period' argument.");           }        this.period = period;        this.value = value;    }    /**     * Constructs a new data item that associates a value with a time period.     *     * @param period  the time period (<code>null</code> not permitted).     * @param value  the value associated with the time period.     */    public TimeSeriesDataItem(final RegularTimePeriod period, final double value) {        this(period, new Double(value));    }    /**     * Returns the time period.     *     * @return The time period (never <code>null</code>).     */    public RegularTimePeriod getPeriod() {        return this.period;    }    /**     * Returns the value.     *     * @return The value (<code>null</code> possible).     */    public Number getValue() {        return this.value;    }    /**     * Sets the value for this data item.     *     * @param value  the value (<code>null</code> permitted).     */    public void setValue(final Number value) {        this.value = value;    }    /**     * Tests this object for equality with an arbitrary object.     *     * @param o  the other object.     *     * @return A boolean.     */    public boolean equals(final Object o) {        if (this == o) {            return true;        }        if (!(o instanceof TimeSeriesDataItem)) {            return false;        }        final TimeSeriesDataItem timeSeriesDataItem = (TimeSeriesDataItem) o;        if (this.period != null) {            if (!this.period.equals(timeSeriesDataItem.period)) {                return false;            }        }        else if (timeSeriesDataItem.period != null) {           return false;        }                if (this.value != null) {            if (!this.value.equals(timeSeriesDataItem.value)) {                return false;            }        }        else if (timeSeriesDataItem.value != null) {            return false;        }        return true;    }    /**     * Returns a hash code.     *      * @return A hash code.     */    public int hashCode() {        int result;        result = (this.period != null ? this.period.hashCode() : 0);        result = 29 * result + (this.value != null ? this.value.hashCode() : 0);        return result;    }    /**     * Returns an integer indicating the order of this data pair object     * relative to another object.     * <P>     * For the order we consider only the timing:     * negative == before, zero == same, positive == after.     *     * @param o1  The object being compared to.     *     * @return  An integer indicating the order of the data pair object relative to another object.     */    public int compareTo(final Object o1) {        final int result;        // CASE 1 : Comparing to another TimeSeriesDataPair object        // -------------------------------------------------------        if (o1 instanceof TimeSeriesDataItem) {            final TimeSeriesDataItem datapair = (TimeSeriesDataItem) o1;            result = getPeriod().compareTo(datapair.getPeriod());        }        // CASE 2 : Comparing to a general object        // ---------------------------------------------        else {            // consider time periods to be ordered after general objects            result = 1;        }        return result;    }    /**     * Clones the data item.     * <P>     * Notes:     * --> no need to clone the period or value since they are immutable classes.     *     * @return A clone of the data item.     */    public Object clone() {        Object clone = null;        try {            clone = super.clone();        }        catch (CloneNotSupportedException e) { // won't get here...            System.err.println("TimeSeriesDataItem.clone(): operation not supported.");        }        return clone;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -