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 * Luminous flux density per solid angle 015 * as measured in a given direction relative to the emitting source. 016 * The metric system unit for this quantity is "cd" (candela). 017 * 018 * @author <a href="mailto:[email protected]">Jean-Marie Dautelle</a> 019 * @version 1.0 020 * 021 * @see Luminance 022 */ 023public interface LuminousIntensity extends Quantity<LuminousIntensity> { 024}