/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 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; public final class Byte extends Number implements Comparable { public static final byte MIN_VALUE = -128; public static final byte MAX_VALUE = 127; public static final Class TYPE = byte.class; public static final int SIZE = 8; public Byte(byte value) { } public Byte(String s) throws NumberFormatException { } native public static String toString(byte b); native public static Byte valueOf(byte b); native public static byte parseByte(String s) throws NumberFormatException; native public static byte parseByte(String s, int radix) throws NumberFormatException; native public static Byte valueOf(String s, int radix) throws NumberFormatException; native public static Byte valueOf(String s) throws NumberFormatException; native public static Byte decode(String nm) throws NumberFormatException; native public byte byteValue(); native public short shortValue(); native public int intValue(); native public long longValue(); native public float floatValue(); native public double doubleValue(); native public String toString(); native public int hashCode(); native public boolean equals(Object obj); native public int compareTo(Byte anotherByte); }