java.lang.Short 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
package java.lang;
/**
* @since CLDC 1.0
*/
public final class Short {
public final static short MAX_VALUE= 32767;
public final static short MIN_VALUE= -32768;
/**
* @throws NumberFormatException
*/
public static short parseShort(String s) throws NumberFormatException {
return 0;
}
/**
* @throws NumberFormatException
*/
public static short parseShort(String s, int radix) throws NumberFormatException {
return 0;
}
public Short(short arg0) {}
public boolean equals(Object obj) {
return false;
}
public int hashCode() {
return 0;
}
public short shortValue() {
return 0;
}
public String toString() {
return null;
}
}