19 lines
561 B
Java
19 lines
561 B
Java
![]() |
/* GENERATED SOURCE. DO NOT MODIFY. */
|
||
|
// © 2017 and later: Unicode, Inc. and others.
|
||
|
// License & terms of use: http://www.unicode.org/copyright.html
|
||
|
package android.icu.number;
|
||
|
|
||
|
/**
|
||
|
* A class that defines the simple notation style to be used when formatting numbers in NumberFormatter.
|
||
|
*
|
||
|
* <p>
|
||
|
* This class exposes no public functionality. To create a SimpleNotation, use one of the factory methods
|
||
|
* in {@link Notation}.
|
||
|
*
|
||
|
* @see NumberFormatter
|
||
|
*/
|
||
|
public class SimpleNotation extends Notation {
|
||
|
/* package-private */ SimpleNotation() {
|
||
|
}
|
||
|
}
|