java.lang.Byte Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cldc-1.1-stub Show documentation
Show all versions of cldc-1.1-stub Show documentation
Stub of the Connected Limited Device Configuration v1.1
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;
}
}