📄 fixedmillisecond.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.] * * --------------------- * FixedMillisecond.java * --------------------- * (C) Copyright 2002, 2003 by Object Refinery Limited. * * Original Author: David Gilbert (for Object Refinery Limited); * Contributor(s): -; * * $Id: FixedMillisecond.java,v 1.8 2004/04/26 19:15:37 taqua Exp $ * * Changes * ------- * 19-Mar-2002 : Version 1, based on original Millisecond implementation (DG); * 24-Jun-2002 : Removed unnecessary imports (DG); * 10-Sep-2002 : Added getSerialIndex() method (DG); * 07-Oct-2002 : Fixed errors reported by Checkstyle (DG); * 13-Mar-2003 : Moved to com.jrefinery.data.time package and implemented Serializable (DG); * 21-Oct-2003 : Added hashCode() method (DG); * */package org.jfree.data.time;import java.io.Serializable;import java.util.Calendar;import java.util.Date;/** * Wrapper for a <code>java.util.Date</code> object that allows it to be used as a * {@link RegularTimePeriod}. * <P> * This class is immutable, which is a requirement for all {@link RegularTimePeriod} subclasses. * */public class FixedMillisecond extends RegularTimePeriod implements Serializable { /** The millisecond. */ private Date time; /** * Constructs a millisecond based on the current system time. */ public FixedMillisecond() { this(new Date()); } /** * Constructs a millisecond. * * @param millisecond the millisecond (same encoding as java.util.Date). */ public FixedMillisecond(final long millisecond) { this(new Date(millisecond)); } /** * Constructs a millisecond. * * @param time the time. */ public FixedMillisecond(final Date time) { this.time = time; } /** * Returns the date/time. * * @return the date/time. */ public Date getTime() { return this.time; } /** * Returns the millisecond preceding this one. * * @return the millisecond preceding this one. */ public RegularTimePeriod previous() { RegularTimePeriod result = null; final long t = this.time.getTime(); if (t != Long.MIN_VALUE) { result = new FixedMillisecond(t - 1); } return result; } /** * Returns the millisecond following this one. * * @return the millisecond following this one. */ public RegularTimePeriod next() { RegularTimePeriod result = null; final long t = this.time.getTime(); if (t != Long.MAX_VALUE) { result = new FixedMillisecond(t + 1); } return result; } /** * Tests the equality of this object against an arbitrary Object. * * @param object the object to compare * * @return A boolean. */ public boolean equals(final Object object) { if (object instanceof FixedMillisecond) { final FixedMillisecond m = (FixedMillisecond) object; return this.time.equals(m.getTime()); } else { return false; } } /** * Returns a hash code for this object instance. * * @return A hash code. */ public int hashCode() { return this.time.hashCode(); } /** * Returns an integer indicating the order of this Millisecond object * relative to the specified * object: negative == before, zero == same, positive == after. * * @param o1 the object to compare. * * @return negative == before, zero == same, positive == after. */ public int compareTo(final Object o1) { final int result; final long difference; // CASE 1 : Comparing to another Second object // ------------------------------------------- if (o1 instanceof FixedMillisecond) { final FixedMillisecond t1 = (FixedMillisecond) o1; difference = this.time.getTime() - t1.time.getTime(); if (difference > 0) { result = 1; } else { if (difference < 0) { result = -1; } else { result = 0; } } } // CASE 2 : Comparing to another TimePeriod object // ----------------------------------------------- else if (o1 instanceof RegularTimePeriod) { // more difficult case - evaluate later... result = 0; } // CASE 3 : Comparing to a non-TimePeriod object // --------------------------------------------- else { // consider time periods to be ordered after general objects result = 1; } return result; } /** * Returns the first millisecond of the time period. * * @return the first millisecond of the time period. */ public long getFirstMillisecond() { return this.time.getTime(); } /** * Returns the first millisecond of the time period. * * @param calendar the calendar. * * @return the first millisecond of the time period. */ public long getFirstMillisecond(final Calendar calendar) { return this.time.getTime(); } /** * Returns the last millisecond of the time period. * * @return the last millisecond of the time period. */ public long getLastMillisecond() { return this.time.getTime(); } /** * Returns the last millisecond of the time period. * * @param calendar the calendar. * * @return the last millisecond of the time period. */ public long getLastMillisecond(final Calendar calendar) { return this.time.getTime(); } /** * Returns the millisecond closest to the middle of the time period. * * @return the millisecond closest to the middle of the time period. */ public long getMiddleMillisecond() { return this.time.getTime(); } /** * Returns the millisecond closest to the middle of the time period. * * @param calendar the calendar. * * @return the millisecond closest to the middle of the time period. */ public long getMiddleMillisecond(final Calendar calendar) { return this.time.getTime(); } /** * Returns a serial index number for the millisecond. * * @return The serial index number. */ public long getSerialIndex() { return this.time.getTime(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -