Home | History | Annotate | Download | only in number

Lines Matching defs:compactStyle

21 import com.ibm.icu.text.CompactDecimalFormat.CompactStyle;
49 private transient CompactStyle compactStyle;
121 compactStyle = null;
167 compactStyle = other.compactStyle;
214 eq = eq && _equalsHelper(compactStyle, other.compactStyle);
277 hashCode ^= _hashCodeHelper(compactStyle);
379 public CompactStyle getCompactStyle() {
380 return compactStyle;
629 * Use compact decimal formatting with the specified {@link CompactStyle}. CompactStyle.SHORT produces output like
630 * "10K" in locale <em>en-US</em>, whereas CompactStyle.LONG produces output like "10 thousand" in that locale.
632 * @param compactStyle
636 public DecimalFormatProperties setCompactStyle(CompactStyle compactStyle) {
637 this.compactStyle = compactStyle;