1 /*
2  * Copyright (C) 2014 The Android Open Source Project
3  * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This code is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License version 2 only, as
8  * published by the Free Software Foundation.  Oracle designates this
9  * particular file as subject to the "Classpath" exception as provided
10  * by Oracle in the LICENSE file that accompanied this code.
11  *
12  * This code is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15  * version 2 for more details (a copy is included in the LICENSE file that
16  * accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License version
19  * 2 along with this work; if not, write to the Free Software Foundation,
20  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
21  *
22  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
23  * or visit www.oracle.com if you need additional information or have any
24  * questions.
25  */
26 
27 /*
28  * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
29  * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
30  *
31  *   The original version of this source code and documentation is copyrighted
32  * and owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These
33  * materials are provided under terms of a License Agreement between Taligent
34  * and Sun. This technology is protected by multiple US and International
35  * patents. This notice and attribution to Taligent may not be removed.
36  *   Taligent is a registered trademark of Taligent, Inc.
37  *
38  */
39 
40 package java.text;
41 
42 import dalvik.annotation.compat.UnsupportedAppUsage;
43 
44 @SuppressWarnings({"unchecked", "deprecation", "all"})
45 public class DecimalFormatSymbols implements java.lang.Cloneable, java.io.Serializable {
46 
DecimalFormatSymbols()47     public DecimalFormatSymbols() {
48         throw new RuntimeException("Stub!");
49     }
50 
DecimalFormatSymbols(java.util.Locale locale)51     public DecimalFormatSymbols(java.util.Locale locale) {
52         throw new RuntimeException("Stub!");
53     }
54 
getAvailableLocales()55     public static java.util.Locale[] getAvailableLocales() {
56         throw new RuntimeException("Stub!");
57     }
58 
getInstance()59     public static final java.text.DecimalFormatSymbols getInstance() {
60         throw new RuntimeException("Stub!");
61     }
62 
getInstance(java.util.Locale locale)63     public static final java.text.DecimalFormatSymbols getInstance(java.util.Locale locale) {
64         throw new RuntimeException("Stub!");
65     }
66 
getZeroDigit()67     public char getZeroDigit() {
68         throw new RuntimeException("Stub!");
69     }
70 
setZeroDigit(char zeroDigit)71     public void setZeroDigit(char zeroDigit) {
72         throw new RuntimeException("Stub!");
73     }
74 
getGroupingSeparator()75     public char getGroupingSeparator() {
76         throw new RuntimeException("Stub!");
77     }
78 
setGroupingSeparator(char groupingSeparator)79     public void setGroupingSeparator(char groupingSeparator) {
80         throw new RuntimeException("Stub!");
81     }
82 
getDecimalSeparator()83     public char getDecimalSeparator() {
84         throw new RuntimeException("Stub!");
85     }
86 
setDecimalSeparator(char decimalSeparator)87     public void setDecimalSeparator(char decimalSeparator) {
88         throw new RuntimeException("Stub!");
89     }
90 
getPerMill()91     public char getPerMill() {
92         throw new RuntimeException("Stub!");
93     }
94 
setPerMill(char perMill)95     public void setPerMill(char perMill) {
96         throw new RuntimeException("Stub!");
97     }
98 
getPercent()99     public char getPercent() {
100         throw new RuntimeException("Stub!");
101     }
102 
103     @UnsupportedAppUsage
getPercentString()104     public java.lang.String getPercentString() {
105         throw new RuntimeException("Stub!");
106     }
107 
setPercent(char percent)108     public void setPercent(char percent) {
109         throw new RuntimeException("Stub!");
110     }
111 
getDigit()112     public char getDigit() {
113         throw new RuntimeException("Stub!");
114     }
115 
setDigit(char digit)116     public void setDigit(char digit) {
117         throw new RuntimeException("Stub!");
118     }
119 
getPatternSeparator()120     public char getPatternSeparator() {
121         throw new RuntimeException("Stub!");
122     }
123 
setPatternSeparator(char patternSeparator)124     public void setPatternSeparator(char patternSeparator) {
125         throw new RuntimeException("Stub!");
126     }
127 
getInfinity()128     public java.lang.String getInfinity() {
129         throw new RuntimeException("Stub!");
130     }
131 
setInfinity(java.lang.String infinity)132     public void setInfinity(java.lang.String infinity) {
133         throw new RuntimeException("Stub!");
134     }
135 
getNaN()136     public java.lang.String getNaN() {
137         throw new RuntimeException("Stub!");
138     }
139 
setNaN(java.lang.String NaN)140     public void setNaN(java.lang.String NaN) {
141         throw new RuntimeException("Stub!");
142     }
143 
getMinusSign()144     public char getMinusSign() {
145         throw new RuntimeException("Stub!");
146     }
147 
getMinusSignString()148     public java.lang.String getMinusSignString() {
149         throw new RuntimeException("Stub!");
150     }
151 
setMinusSign(char minusSign)152     public void setMinusSign(char minusSign) {
153         throw new RuntimeException("Stub!");
154     }
155 
getCurrencySymbol()156     public java.lang.String getCurrencySymbol() {
157         throw new RuntimeException("Stub!");
158     }
159 
setCurrencySymbol(java.lang.String currency)160     public void setCurrencySymbol(java.lang.String currency) {
161         throw new RuntimeException("Stub!");
162     }
163 
getInternationalCurrencySymbol()164     public java.lang.String getInternationalCurrencySymbol() {
165         throw new RuntimeException("Stub!");
166     }
167 
setInternationalCurrencySymbol(java.lang.String currencyCode)168     public void setInternationalCurrencySymbol(java.lang.String currencyCode) {
169         throw new RuntimeException("Stub!");
170     }
171 
getCurrency()172     public java.util.Currency getCurrency() {
173         throw new RuntimeException("Stub!");
174     }
175 
setCurrency(java.util.Currency currency)176     public void setCurrency(java.util.Currency currency) {
177         throw new RuntimeException("Stub!");
178     }
179 
getMonetaryDecimalSeparator()180     public char getMonetaryDecimalSeparator() {
181         throw new RuntimeException("Stub!");
182     }
183 
setMonetaryDecimalSeparator(char sep)184     public void setMonetaryDecimalSeparator(char sep) {
185         throw new RuntimeException("Stub!");
186     }
187 
getExponentialSymbol()188     char getExponentialSymbol() {
189         throw new RuntimeException("Stub!");
190     }
191 
getExponentSeparator()192     public java.lang.String getExponentSeparator() {
193         throw new RuntimeException("Stub!");
194     }
195 
setExponentialSymbol(char exp)196     void setExponentialSymbol(char exp) {
197         throw new RuntimeException("Stub!");
198     }
199 
setExponentSeparator(java.lang.String exp)200     public void setExponentSeparator(java.lang.String exp) {
201         throw new RuntimeException("Stub!");
202     }
203 
clone()204     public java.lang.Object clone() {
205         throw new RuntimeException("Stub!");
206     }
207 
equals(java.lang.Object obj)208     public boolean equals(java.lang.Object obj) {
209         throw new RuntimeException("Stub!");
210     }
211 
hashCode()212     public int hashCode() {
213         throw new RuntimeException("Stub!");
214     }
215 
initialize(java.util.Locale locale)216     private void initialize(java.util.Locale locale) {
217         throw new RuntimeException("Stub!");
218     }
219 
maybeStripMarkers(java.lang.String symbol, char fallback)220     public static char maybeStripMarkers(java.lang.String symbol, char fallback) {
221         throw new RuntimeException("Stub!");
222     }
223 
getIcuDecimalFormatSymbols()224     protected android.icu.text.DecimalFormatSymbols getIcuDecimalFormatSymbols() {
225         throw new RuntimeException("Stub!");
226     }
227 
fromIcuInstance( android.icu.text.DecimalFormatSymbols dfs)228     protected static java.text.DecimalFormatSymbols fromIcuInstance(
229             android.icu.text.DecimalFormatSymbols dfs) {
230         throw new RuntimeException("Stub!");
231     }
232 
writeObject(java.io.ObjectOutputStream stream)233     private void writeObject(java.io.ObjectOutputStream stream) throws java.io.IOException {
234         throw new RuntimeException("Stub!");
235     }
236 
readObject(java.io.ObjectInputStream stream)237     private void readObject(java.io.ObjectInputStream stream)
238             throws java.lang.ClassNotFoundException, java.io.IOException {
239         throw new RuntimeException("Stub!");
240     }
241 
242     private java.lang.String NaN;
243 
244     private transient android.icu.text.DecimalFormatSymbols cachedIcuDFS;
245 
246     private transient java.util.Currency currency;
247 
248     private java.lang.String currencySymbol;
249 
250     private static final int currentSerialVersion = 3; // 0x3
251 
252     private char decimalSeparator;
253 
254     private char digit;
255 
256     private char exponential;
257 
258     private java.lang.String exponentialSeparator;
259 
260     private char groupingSeparator;
261 
262     private java.lang.String infinity;
263 
264     private java.lang.String intlCurrencySymbol;
265 
266     private java.util.Locale locale;
267 
268     private char minusSign;
269 
270     private char monetarySeparator;
271 
272     private char patternSeparator;
273 
274     private char perMill;
275 
276     private char percent;
277 
278     private static final java.io.ObjectStreamField[] serialPersistentFields;
279 
280     static {
281         serialPersistentFields = new java.io.ObjectStreamField[0];
282     }
283 
284     private int serialVersionOnStream = 3; // 0x3
285 
286     static final long serialVersionUID = 5772796243397350300L; // 0x501d17990868939cL
287 
288     private char zeroDigit;
289 }
290