net.time4j.IsoTimeUnit Maven / Gradle / Ivy
/*
* -----------------------------------------------------------------------
* Copyright © 2013-2014 Meno Hochschild,
* -----------------------------------------------------------------------
* This file (IsoTimeUnit.java) is part of project Time4J.
*
* Time4J 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.
*
* Time4J 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 Time4J. If not, see .
* -----------------------------------------------------------------------
*/
package net.time4j;
/**
* Represents a wall time unit conforming to ISO-8601.
*
* Most applications will simply use a standard unit of type
* {@code ClockUnit}. Other units must inherit from the class
* {@link net.time4j.engine.BasicUnit} appropriately and
* also make sure that the length of time unit is always smaller
* than the length of a day.
*
* @author Meno Hochschild
* @see ClockUnit
*/
/*[deutsch]
* Repräsentiert eine ISO-konforme Uhrzeiteinheit.
*
* Die meisten Anwendungen werden einfach eine Standardeinheit vom
* Typ {@code ClockUnit} benutzen. Andere Zeiteinheiten müssen
* von der Klasse {@link net.time4j.engine.BasicUnit} erben und beachten,
* daß die Länge der Zeiteinheit stets unterhalb eines Tages
* bleiben muß.
*
* @author Meno Hochschild
* @see ClockUnit
*/
public interface IsoTimeUnit
extends IsoUnit {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy