home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1995 November
/
PCWK1195.iso
/
inne
/
win95
/
sieciowe
/
hotja32.lzh
/
hotjava
/
classsrc
/
java
/
lang
/
number.java
< prev
next >
Wrap
Text File
|
1995-08-11
|
2KB
|
66 lines
/*
* @(#)Number.java 1.11 95/02/11
*
* Copyright (c) 1994 Sun Microsystems, Inc. All Rights Reserved.
*
* Permission to use, copy, modify, and distribute this software
* and its documentation for NON-COMMERCIAL purposes and without
* fee is hereby granted provided that this copyright notice
* appears in all copies. Please refer to the file "copyright.html"
* for further important copyright and licensing information.
*
* SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
* THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
* TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
* PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
* ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
* DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
*/
package java.lang;
/**
* Number is an abstract superclass for numeric scalar types.
* Integer, Long, Float and Double are subclasses of Number that bind
* to a particular representation.<p>
*
* @see Integer
* @see Long
* @see Float
* @see Double
* @version 1.11, 11 Feb 1995
* @author Lee Boynton
* @author Arthur van Hoff
*/
public
class Number {
/**
* Returns the value of the number as an int.
* This may involve rounding if the number is not already an integer.
* @return the integer value
*/
public abstract int intValue();
/**
* Returns the value of the number as an long.
*/
public abstract long longValue();
/**
* Returns the value of the number as a float.
*/
public abstract float floatValue();
/**
* Returns the value of the number as a double.
*/
public abstract double doubleValue();
}