]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-4_8_1_1/main/classes/core/src/com/ibm/icu/util/MeasureUnit.java
Added flags.
[Dictionary.git] / jars / icu4j-4_8_1_1 / main / classes / core / src / com / ibm / icu / util / MeasureUnit.java
1 /*
2 **********************************************************************
3 * Copyright (c) 2004-2007, International Business Machines
4 * Corporation and others.  All Rights Reserved.
5 **********************************************************************
6 * Author: Alan Liu
7 * Created: April 20, 2004
8 * Since: ICU 3.0
9 **********************************************************************
10 */
11 package com.ibm.icu.util;
12
13 /**
14  * A unit such as length, mass, volume, currency, etc.  A unit is
15  * coupled with a numeric amount to produce a Measure.
16  *
17  * @see com.ibm.icu.util.Measure
18  * @author Alan Liu
19  * @stable ICU 3.0
20  */
21 public abstract class MeasureUnit {
22     /**
23      * @internal
24      * @deprecated This API is ICU internal only.
25      */
26     protected MeasureUnit() {}
27 }