updating mlp benchmarks, extending class library
[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   {
75     digits = new char[36];
76     digits[0] =  '0'; 
77     digits[1] =  '1'; 
78     digits[2] =  '2';
79     digits[3] =  '3'; 
80     digits[4] =  '4';
81     digits[5] =  '5'; 
82     digits[6] =  '6';
83     digits[7] =  '7';
84     digits[8] =  '8';
85     digits[9] =  '9';
86     digits[10] =  'a';
87     digits[11] =  'b';
88     digits[12] =  'c';
89     digits[13] =  'd';
90     digits[14] =  'e';
91     digits[15] =  'f';
92     digits[16] =  'g';
93     digits[17] =  'h';
94     digits[18] =  'i';
95     digits[19] =  'j';
96     digits[20] =  'k';
97     digits[21] =  'l';
98     digits[22] =  'm';
99     digits[23] =  'n';
100     digits[24] =  'o';
101     digits[25] =  'p';
102     digits[26] =  'q';
103     digits[27] =  'r';
104     digits[28] =  's';
105     digits[29] =  't';
106     digits[30] =  'u';
107     digits[31] =  'v';
108     digits[32] =  'w';
109     digits[33] =  'x';
110     digits[34] =  'y';
111     digits[35] =  'z';
112   }
113
114   /**
115    * Return the value of this <code>Number</code> as an <code>int</code>.
116    *
117    * @return the int value
118    */
119   public /*abstract*/ int intValue(){}
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    * 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    * Return the value of this <code>Number</code> as a <code>float</code>.
137    *
138    * @return the double value
139    */
140   public /*abstract*/ double doubleValue(){}
141
142   /**
143    * Return the value of this <code>Number</code> as a <code>byte</code>.
144    *
145    * @return the byte value
146    * @since 1.1
147    */
148   public byte byteValue()
149   {
150     return (byte) intValue();
151   }
152
153   /**
154    * Return the value of this <code>Number</code> as a <code>short</code>.
155    *
156    * @return the short value
157    * @since 1.1
158    */
159   public short shortValue()
160   {
161     return (short) intValue();
162   }
163 }