1 11 package com.ibm.icu.text; 12 13 import com.ibm.icu.util.ULocale; 14 15 26 public abstract class MeasureFormat extends UFormat { 27 static final long serialVersionUID = -7182021401701778240L; 29 30 34 protected MeasureFormat() {}; 35 36 43 public static MeasureFormat getCurrencyFormat(ULocale locale) { 44 return new CurrencyFormat(locale); 45 } 46 47 53 public static MeasureFormat getCurrencyFormat() { 54 return getCurrencyFormat(ULocale.getDefault()); 55 } 56 } 57 | Popular Tags |