reformat benchmark source codes to meet the requirements of the annotation generation.
[IRC.git] / Robust / src / ClassLibrary / SSJavaInfer / Number.java
1 /* Number.java =- abstract superclass of numeric objects
2    Copyright (C) 1998, 2001, 2002, 2005  Free Software Foundation, Inc.
3
4    This file is part of GNU Classpath.
5
6    GNU Classpath is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    GNU Classpath is distributed in the hope that it will be useful, but
12    WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with GNU Classpath; see the file COPYING.  If not, write to the
18    Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19    02110-1301 USA.
20
21    Linking this library statically or dynamically with other modules is
22    making a combined work based on this library.  Thus, the terms and
23    conditions of the GNU General Public License cover the whole
24    combination.
25
26    As a special exception, the copyright holders of this library give you
27    permission to link this library with independent modules to produce an
28    executable, regardless of the license terms of these independent
29    modules, and to copy and distribute the resulting executable under
30    terms of your choice, provided that you also meet, for each linked
31    independent module, the terms and conditions of the license of that
32    module.  An independent module is a module which is not derived from
33    or based on this library.  If you modify this library, you may extend
34    this exception to your version of the library, but you are not
35    obligated to do so.  If you do not wish to do so, delete this
36    exception statement from your version. */
37
38 //package java.lang;
39
40 //import java.io.Serializable;
41
42 /**
43  * Number is a generic superclass of all the numeric classes, including the
44  * wrapper classes {@link Byte}, {@link Short}, {@link Integer}, {@link Long},
45  * {@link Float}, and {@link Double}. Also worth mentioning are the classes in
46  * {@link java.math}.
47  * 
48  * It provides ways to convert numeric objects to any primitive.
49  * 
50  * @author Paul Fisher
51  * @author John Keiser
52  * @author Warren Levy
53  * @author Eric Blake (ebb9@email.byu.edu)
54  * @since 1.0
55  * @status updated to 1.4
56  */
57 public/* abstract */class Number // implements Serializable
58 {
59   /**
60    * Compatible with JDK 1.1+.
61    */
62   // private static final long serialVersionUID = -8742448824652078965L;
63
64   /**
65    * Table for calculating digits, used in Character, Long, and Integer.
66    */
67   /* static */final char[] digits;
68
69   /**
70    * The basic constructor (often called implicitly).
71    */
72   public Number() {
73     digits = new char[36];
74     digits[0] = '0';
75     digits[1] = '1';
76     digits[2] = '2';
77     digits[3] = '3';
78     digits[4] = '4';
79     digits[5] = '5';
80     digits[6] = '6';
81     digits[7] = '7';
82     digits[8] = '8';
83     digits[9] = '9';
84     digits[10] = 'a';
85     digits[11] = 'b';
86     digits[12] = 'c';
87     digits[13] = 'd';
88     digits[14] = 'e';
89     digits[15] = 'f';
90     digits[16] = 'g';
91     digits[17] = 'h';
92     digits[18] = 'i';
93     digits[19] = 'j';
94     digits[20] = 'k';
95     digits[21] = 'l';
96     digits[22] = 'm';
97     digits[23] = 'n';
98     digits[24] = 'o';
99     digits[25] = 'p';
100     digits[26] = 'q';
101     digits[27] = 'r';
102     digits[28] = 's';
103     digits[29] = 't';
104     digits[30] = 'u';
105     digits[31] = 'v';
106     digits[32] = 'w';
107     digits[33] = 'x';
108     digits[34] = 'y';
109     digits[35] = 'z';
110   }
111
112   /**
113    * Return the value of this <code>Number</code> as an <code>int</code>.
114    * 
115    * @return the int value
116    */
117   public/* abstract */int intValue() {
118   }
119
120   /**
121    * Return the value of this <code>Number</code> as a <code>long</code>.
122    * 
123    * @return the long value
124    */
125   public/* abstract */long longValue() {
126   }
127
128   /**
129    * Return the value of this <code>Number</code> as a <code>float</code>.
130    * 
131    * @return the float value
132    */
133   public/* abstract */float floatValue() {
134   }
135
136   /**
137    * Return the value of this <code>Number</code> as a <code>float</code>.
138    * 
139    * @return the double value
140    */
141   public/* abstract */double doubleValue() {
142   }
143
144   /**
145    * Return the value of this <code>Number</code> as a <code>byte</code>.
146    * 
147    * @return the byte value
148    * @since 1.1
149    */
150   public byte byteValue() {
151     return (byte) intValue();
152   }
153
154   /**
155    * Return the value of this <code>Number</code> as a <code>short</code>.
156    * 
157    * @return the short value
158    * @since 1.1
159    */
160   public short shortValue() {
161     return (short) intValue();
162   }
163 }