
net.sourceforge.plantuml.project.Instant Maven / Gradle / Ivy
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2012, Arnaud Roques
*
* Project Info: http://plantuml.sourceforge.net
*
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML 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 General Public
* License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* Original Author: Arnaud Roques
*
* Revision $Revision: 6104 $
*
*/
package net.sourceforge.plantuml.project;
public class Instant implements Numeric {
private final Day value;
public Instant(Day d) {
this.value = d;
}
public Numeric add(Numeric other) {
throw new UnsupportedOperationException();
}
public NumericType getNumericType() {
return NumericType.INSTANT;
}
public Day getDay() {
return value;
}
public Instant next(DayClose dayClose) {
return new Instant(value.next(dayClose));
}
public Instant prev(DayClose dayClose) {
return new Instant(value.prev(dayClose));
}
@Override
public String toString() {
return "Instant:" + value;
}
public int compareTo(Numeric other) {
final Instant this2 = (Instant) other;
return value.compareTo(this2.value);
}
@Override
public int hashCode() {
return value.hashCode();
}
@Override
public boolean equals(Object obj) {
final Instant other = (Instant) obj;
return value.equals(other.value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy