01: package java.lang;
02:
03: public final class Short extends Number implements Comparable {
04: public static final short MIN_VALUE = -32768;
05: public static final short MAX_VALUE = 32767;
06: public static final Class TYPE;
07:
08: public Short(short value) {
09: }
10:
11: public Short(String s) {
12: }
13:
14: public static String toString(short s) {
15: }
16:
17: public static short parseShort(String s) {
18: }
19:
20: public static short parseShort(String s, int radix) {
21: }
22:
23: public static Short valueOf(String s, int radix) {
24: }
25:
26: public static Short valueOf(String s) {
27: }
28:
29: public static Short decode(String s) {
30: }
31:
32: public byte byteValue() {
33: }
34:
35: public short shortValue() {
36: }
37:
38: public int intValue() {
39: }
40:
41: public long longValue() {
42: }
43:
44: public float floatValue() {
45: }
46:
47: public double doubleValue() {
48: }
49:
50: public String toString() {
51: }
52:
53: public int hashCode() {
54: }
55:
56: public boolean equals(Object obj) {
57: }
58:
59: public int compareTo(Short s) {
60: }
61:
62: public int compareTo(Object o) {
63: }
64: }
|