Fix tabbing.... Please fix your editors so they do tabbing correctly!!! (Spaces...
[IRC.git] / Robust / src / ClassLibrary / gnu / 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
39 //package java.lang;
40
41 //import java.io.Serializable;
42
43 /**
44  * Number is a generic superclass of all the numeric classes, including
45  * the wrapper classes {@link Byte}, {@link Short}, {@link Integer},
46  * {@link Long}, {@link Float}, and {@link Double}.  Also worth mentioning
47  * are the classes in {@link java.math}.
48  *
49  * It provides ways to convert numeric objects to any primitive.
50  *
51  * @author Paul Fisher
52  * @author John Keiser
53  * @author Warren Levy
54  * @author Eric Blake (ebb9@email.byu.edu)
55  * @since 1.0
56  * @status updated to 1.4
57  */
58 public /*abstract*/ class Number //implements Serializable
59 {
60   /**
61    * Compatible with JDK 1.1+.
62    */
63   //private static final long serialVersionUID = -8742448824652078965L;
64
65   /**
66    * Table for calculating digits, used in Character, Long, and Integer.
67    */
68   /*static*/ final char[] digits;
69
70   /**
71    * The basic constructor (often called implicitly).
72    */
73   public Number() {
74     digits = new char[36];
75     digits[0] =  '0';
76     digits[1] =  '1';
77     digits[2] =  '2';
78     digits[3] =  '3';
79     digits[4] =  '4';
80     digits[5] =  '5';
81     digits[6] =  '6';
82     digits[7] =  '7';
83     digits[8] =  '8';
84     digits[9] =  '9';
85     digits[10] =  'a';
86     digits[11] =  'b';
87     digits[12] =  'c';
88     digits[13] =  'd';
89     digits[14] =  'e';
90     digits[15] =  'f';
91     digits[16] =  'g';
92     digits[17] =  'h';
93     digits[18] =  'i';
94     digits[19] =  'j';
95     digits[20] =  'k';
96     digits[21] =  'l';
97     digits[22] =  'm';
98     digits[23] =  'n';
99     digits[24] =  'o';
100     digits[25] =  'p';
101     digits[26] =  'q';
102     digits[27] =  'r';
103     digits[28] =  's';
104     digits[29] =  't';
105     digits[30] =  'u';
106     digits[31] =  'v';
107     digits[32] =  'w';
108     digits[33] =  'x';
109     digits[34] =  'y';
110     digits[35] =  'z';
111   }
112
113   /**
114    * Return the value of this <code>Number</code> as an <code>int</code>.
115    *
116    * @return the int value
117    */
118   public /*abstract*/ int intValue() {
119   }
120
121   /**
122    * Return the value of this <code>Number</code> as a <code>long</code>.
123    *
124    * @return the long value
125    */
126   public /*abstract*/ long longValue() {
127   }
128
129   /**
130    * Return the value of this <code>Number</code> as a <code>float</code>.
131    *
132    * @return the float value
133    */
134   public /*abstract*/ float floatValue() {
135   }
136
137   /**
138    * Return the value of this <code>Number</code> as a <code>float</code>.
139    *
140    * @return the double value
141    */
142   public /*abstract*/ double doubleValue() {
143   }
144
145   /**
146    * Return the value of this <code>Number</code> as a <code>byte</code>.
147    *
148    * @return the byte value
149    * @since 1.1
150    */
151   public byte byteValue() {
152     return (byte) intValue();
153   }
154
155   /**
156    * Return the value of this <code>Number</code> as a <code>short</code>.
157    *
158    * @return the short value
159    * @since 1.1
160    */
161   public short shortValue() {
162     return (short) intValue();
163   }
164 }