001/** 002 * Unit-API - Units of Measurement API for Java 003 * Copyright (c) 2014 Jean-Marie Dautelle, Werner Keil, V2COM 004 * All rights reserved. 005 * 006 * See LICENSE.txt for details. 007 */ 008package javax.measure.quantity; 009 010import javax.measure.Quantity; 011 012 013/** 014 * Period of existence or persistence. 015 * The metric system unit for this quantity is "s" (second). 016 * 017 * @author <a href="mailto:[email protected]">Werner Keil</a> 018 * @version 1.2 019 * 020 * @see Frequency 021 * @see Speed 022 * @see AngularSpeed 023 * @see Acceleration 024 * @see AngularAcceleration 025 * @see ElectricCurrent 026 * @see MassFlowRate 027 * @see VolumetricFlowRate 028 * @see InformationRate 029 * @see Power 030 */ 031public interface Time extends Quantity<Time> { 032}