blob: 3849f68cf9dad7da921e46737eccc4ba4068dfee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
package java.text;
public abstract class NumberFormat
extends java.text.Format
{
public static class Field
extends java.text.Format.Field
{
protected Field(java.lang.String fieldName) { super((java.lang.String)null); throw new RuntimeException("Stub!"); }
public static final java.text.NumberFormat.Field CURRENCY;
public static final java.text.NumberFormat.Field DECIMAL_SEPARATOR;
public static final java.text.NumberFormat.Field EXPONENT;
public static final java.text.NumberFormat.Field EXPONENT_SIGN;
public static final java.text.NumberFormat.Field EXPONENT_SYMBOL;
public static final java.text.NumberFormat.Field FRACTION;
public static final java.text.NumberFormat.Field GROUPING_SEPARATOR;
public static final java.text.NumberFormat.Field INTEGER;
public static final java.text.NumberFormat.Field PERCENT;
public static final java.text.NumberFormat.Field PERMILLE;
public static final java.text.NumberFormat.Field SIGN;
static { CURRENCY = null; DECIMAL_SEPARATOR = null; EXPONENT = null; EXPONENT_SIGN = null; EXPONENT_SYMBOL = null; FRACTION = null; GROUPING_SEPARATOR = null; INTEGER = null; PERCENT = null; PERMILLE = null; SIGN = null; }
}
protected NumberFormat() { throw new RuntimeException("Stub!"); }
public java.lang.Object clone() { throw new RuntimeException("Stub!"); }
public boolean equals(java.lang.Object object) { throw new RuntimeException("Stub!"); }
public final java.lang.String format(double value) { throw new RuntimeException("Stub!"); }
public abstract java.lang.StringBuffer format(double value, java.lang.StringBuffer buffer, java.text.FieldPosition field);
public final java.lang.String format(long value) { throw new RuntimeException("Stub!"); }
public abstract java.lang.StringBuffer format(long value, java.lang.StringBuffer buffer, java.text.FieldPosition field);
public java.lang.StringBuffer format(java.lang.Object object, java.lang.StringBuffer buffer, java.text.FieldPosition field) { throw new RuntimeException("Stub!"); }
public static java.util.Locale[] getAvailableLocales() { throw new RuntimeException("Stub!"); }
public java.util.Currency getCurrency() { throw new RuntimeException("Stub!"); }
public static final java.text.NumberFormat getCurrencyInstance() { throw new RuntimeException("Stub!"); }
public static java.text.NumberFormat getCurrencyInstance(java.util.Locale locale) { throw new RuntimeException("Stub!"); }
public static final java.text.NumberFormat getIntegerInstance() { throw new RuntimeException("Stub!"); }
public static java.text.NumberFormat getIntegerInstance(java.util.Locale locale) { throw new RuntimeException("Stub!"); }
public static final java.text.NumberFormat getInstance() { throw new RuntimeException("Stub!"); }
public static java.text.NumberFormat getInstance(java.util.Locale locale) { throw new RuntimeException("Stub!"); }
public int getMaximumFractionDigits() { throw new RuntimeException("Stub!"); }
public int getMaximumIntegerDigits() { throw new RuntimeException("Stub!"); }
public int getMinimumFractionDigits() { throw new RuntimeException("Stub!"); }
public int getMinimumIntegerDigits() { throw new RuntimeException("Stub!"); }
public static final java.text.NumberFormat getNumberInstance() { throw new RuntimeException("Stub!"); }
public static java.text.NumberFormat getNumberInstance(java.util.Locale locale) { throw new RuntimeException("Stub!"); }
public static final java.text.NumberFormat getPercentInstance() { throw new RuntimeException("Stub!"); }
public static java.text.NumberFormat getPercentInstance(java.util.Locale locale) { throw new RuntimeException("Stub!"); }
public int hashCode() { throw new RuntimeException("Stub!"); }
public boolean isGroupingUsed() { throw new RuntimeException("Stub!"); }
public boolean isParseIntegerOnly() { throw new RuntimeException("Stub!"); }
public java.lang.Number parse(java.lang.String string) throws java.text.ParseException { throw new RuntimeException("Stub!"); }
public abstract java.lang.Number parse(java.lang.String string, java.text.ParsePosition position);
public final java.lang.Object parseObject(java.lang.String string, java.text.ParsePosition position) { throw new RuntimeException("Stub!"); }
public void setCurrency(java.util.Currency currency) { throw new RuntimeException("Stub!"); }
public void setGroupingUsed(boolean value) { throw new RuntimeException("Stub!"); }
public void setMaximumFractionDigits(int value) { throw new RuntimeException("Stub!"); }
public void setMaximumIntegerDigits(int value) { throw new RuntimeException("Stub!"); }
public void setMinimumFractionDigits(int value) { throw new RuntimeException("Stub!"); }
public void setMinimumIntegerDigits(int value) { throw new RuntimeException("Stub!"); }
public void setParseIntegerOnly(boolean value) { throw new RuntimeException("Stub!"); }
public java.math.RoundingMode getRoundingMode() { throw new RuntimeException("Stub!"); }
public void setRoundingMode(java.math.RoundingMode roundingMode) { throw new RuntimeException("Stub!"); }
public static final int FRACTION_FIELD = 1;
public static final int INTEGER_FIELD = 0;
}
|