com.ibm.icu.number.SimpleNotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icu4j Show documentation
Show all versions of icu4j Show documentation
International Component for Unicode for Java (ICU4J) is a mature, widely used Java library
providing Unicode and Globalization support
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
package com.ibm.icu.number;
/**
* A class that defines the simple notation style to be used when formatting numbers in NumberFormatter.
*
*
* This class exposes no public functionality. To create a SimpleNotation, use one of the factory methods
* in {@link Notation}.
*
* @stable ICU 60
* @see NumberFormatter
*/
public class SimpleNotation extends Notation {
/* package-private */ SimpleNotation() {
}
}