All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.lang.Number Maven / Gradle / Ivy

The newest version!
package java.lang;

import java.io.Serializable;

public abstract class Number implements Serializable {
    public Number() {}

    public byte byteValue() {
        return 0;
    }

    public abstract double doubleValue();

    public abstract float floatValue();

    public abstract int intValue();

    public abstract long longValue();

    public short shortValue() {
        return 0;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy