blob: 6ce6a779b5063c6582e3dd71b3d464cc5a5ca4d5 [file] [log] [blame]
/**
* Copyright (c) 2010-2017, Werner Keil, Paul Morrison and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Werner Keil - initial API and implementation
*
* TODO move this quantity to Units or PERCENT from SI to another system.
*/
package org.eclipse.uomo.icu.types;
import javax.measure.Quantity;
/**
* Represents a percentage.
* The unit for this quantity is "%" (percent).
*
* @author <a href="mailto:uomo@catmedia.us">Werner Keil</a>
* @version 1.2, 2013-01-26
*/
public interface Percent extends Quantity<Percent> {
}