/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This source file is part of SableVM classlib-stubs. * * * * See the file "LICENSE" for the copyright information and for * * the terms and conditions for copying, distribution and * * modification of this source file. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ package java.lang; import java.io.Serializable; public abstract class Number extends Object implements Serializable { public Number() { } public abstract int intValue(); public abstract long longValue(); public abstract float floatValue(); public abstract double doubleValue(); native public byte byteValue(); native public short shortValue(); }