net.time4j.scale.ExtendedLSE Maven / Gradle / Ivy
/*
* -----------------------------------------------------------------------
* Copyright © 2013-2014 Meno Hochschild,
* -----------------------------------------------------------------------
* This file (ExtendedLSE.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.scale;
/**
* Erweiterung des Ereignis-Interface um UTC-Methoden.
*
* @author Meno Hochschild
*/
interface ExtendedLSE
extends LeapSecondEvent {
//~ Methoden ----------------------------------------------------------
/**
* Definiert die Sekunde des Schaltsekundenereignisses
* als UTC-Zeit mit Schaltsekunden.
*
* @return elapsed UTC time in SI-seconds relative to UTC epoch 1972-01-01
* including leap seconds
*/
long utc();
/**
* Definiert die Sekunde des Schaltsekundenereignisses
* als UTC-Zeit ohne Schaltsekunden.
*
* @return elapsed UTC time in SI-seconds relative to UTC epoch 1972-01-01
* without leap seconds
*/
long raw();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy