Example usage for Java java.lang Short fields, constructors, methods, implement or subclass
The text is from its open source code.
short | MIN_VALUE A constant holding the minimum value a short can have, -215. |
short | MAX_VALUE A constant holding the maximum value a short can have, 215-1. |
Class | TYPE The Class instance representing the primitive type short . |
int | SIZE The number of bits used to represent a short value in two's complement binary form. |
int | BYTES The number of bytes used to represent a short value in two's complement binary form. |
Short(short value) Constructs a newly allocated Short object that represents the specified short value. | |
Short(String s) Constructs a newly allocated Short object that represents the short value indicated by the String parameter. |
byte | byteValue() Returns the value of this Short as a byte after a narrowing primitive conversion. |
int | compare(short x, short y) Compares two short values numerically. |
int | compareTo(Short anotherShort) Compares two Short objects numerically. |
Short | decode(String nm) Decodes a String into a Short . |
double | doubleValue() Returns the value of this Short as a double after a widening primitive conversion. |
boolean | equals(Object obj) Compares this object to the specified object. |
float | floatValue() Returns the value of this Short as a float after a widening primitive conversion. |
Class> | getClass() Returns the runtime class of this Object . |
int | hashCode() Returns a hash code for this Short ; equal to the result of invoking intValue() . |
int | intValue() Returns the value of this Short as an int after a widening primitive conversion. |
long | longValue() Returns the value of this Short as a long after a widening primitive conversion. |
short | parseShort(String s) Parses the string argument as a signed decimal short . |
short | parseShort(String s, int radix) Parses the string argument as a signed short in the radix specified by the second argument. |
short | reverseBytes(short i) Returns the value obtained by reversing the order of the bytes in the two's complement representation of the specified short value. |
short | shortValue() Returns the value of this Short as a short . |
String | toString() Returns a String object representing this Short 's value. |
String | toString(short s) Returns a new String object representing the specified short . |
int | toUnsignedInt(short x) Converts the argument to an int by an unsigned conversion. |
Short | valueOf(String s, int radix) Returns a Short object holding the value extracted from the specified String when parsed with the radix given by the second argument. |
Short | valueOf(String s) Returns a Short object holding the value given by the specified String . |
Short | valueOf(short s) Returns a Short instance representing the specified short value. |