Package java.lang
Class Short
- java.lang.Object
-
- java.lang.Number
-
- java.lang.Short
-
- All Implemented Interfaces:
Serializable,Comparable
public final class Short extends Number implements Comparable
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description bytebyteValue()intcompareTo(Object var0)intcompareTo(Short var0)static Shortdecode(String var0)doubledoubleValue()booleanequals(Object var0)floatfloatValue()inthashCode()intintValue()longlongValue()static shortparseShort(String var0)static shortparseShort(String var0, int var1)shortshortValue()StringtoString()static StringtoString(short var0)static ShortvalueOf(String var0)static ShortvalueOf(String var0, int var1)
-
-
-
Field Detail
-
MAX_VALUE
public static final short MAX_VALUE
- See Also:
- Constant Field Values
-
MIN_VALUE
public static final short MIN_VALUE
- See Also:
- Constant Field Values
-
TYPE
public static final Class TYPE
-
-
Constructor Detail
-
Short
public Short(String var0) throws NumberFormatException
- Throws:
NumberFormatException
-
Short
public Short(short var0)
-
-
Method Detail
-
compareTo
public int compareTo(Object var0)
- Specified by:
compareToin interfaceComparable
-
compareTo
public int compareTo(Short var0)
-
decode
public static Short decode(String var0) throws NumberFormatException
- Throws:
NumberFormatException
-
doubleValue
public double doubleValue()
- Specified by:
doubleValuein classNumber
-
floatValue
public float floatValue()
- Specified by:
floatValuein classNumber
-
parseShort
public static short parseShort(String var0) throws NumberFormatException
- Throws:
NumberFormatException
-
parseShort
public static short parseShort(String var0, int var1) throws NumberFormatException
- Throws:
NumberFormatException
-
shortValue
public short shortValue()
- Overrides:
shortValuein classNumber
-
toString
public static String toString(short var0)
-
valueOf
public static Short valueOf(String var0) throws NumberFormatException
- Throws:
NumberFormatException
-
valueOf
public static Short valueOf(String var0, int var1) throws NumberFormatException
- Throws:
NumberFormatException
-
-