Lines Matching refs:ChoiceFormat
47 * A <code>ChoiceFormat</code> allows you to attach a format to a range of numbers.
58 * in ascending order, the results of formatting will be incorrect. ChoiceFormat
63 * <code>ChoiceFormat</code> differs from the other <code>Format</code>
64 * classes in that you create a <code>ChoiceFormat</code> object with a
66 * method). The factory methods aren't necessary because <code>ChoiceFormat</code>
68 * <code>ChoiceFormat</code> doesn't implement any locale specific behavior.
71 * When creating a <code>ChoiceFormat</code>, you must specify an array of formats
79 * <em>limits</em> = {0, 1, ChoiceFormat.nextDouble(1)}<br>
91 * ChoiceFormat form = new ChoiceFormat(limits, dayOfWeekNames);
105 * ChoiceFormat fileform = new ChoiceFormat(filelimits, filepart);
118 * Specifying a pattern for ChoiceFormat objects is fairly straightforward.
122 * ChoiceFormat fmt = new ChoiceFormat(
167 public class ChoiceFormat extends NumberFormat {
310 public ChoiceFormat(String newPattern) {
318 public ChoiceFormat(double[] limits, String[] formats) {
458 ChoiceFormat other = (ChoiceFormat) super.clone();
486 ChoiceFormat other = (ChoiceFormat) obj;