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

java.lang.Byte Maven / Gradle / Ivy

The newest version!
package java.lang;

/**
 * @since CLDC 1.0
 */
public final class Byte {
    public static final byte MAX_VALUE= 127;
    public static final byte MIN_VALUE= -128;
    
    /**
     * @throws NumberFormatException
     */
    public static byte parseByte(String s) throws NumberFormatException {
        return -1;
    }
    
    /**
     * @throws NumberFormatException
     */
    public static byte parseByte(String s, int radix) throws NumberFormatException {
        return -1;
    }
    
    public Byte(byte value) {}
    
    public byte byteValue() {
        return -1;
    }
    
    public boolean equals(Object obj) {
        return false;
    }
    
    public int hashCode() {
        return -1;
    }
    
    public String toString() {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy