public final class UShort extends UNumber implements Comparable<UShort>
unsigned short
typeModifier and Type | Field and Description |
---|---|
static int |
MAX_VALUE
A constant holding the maximum value an
unsigned short can
have, 216-1. |
static int |
MIN_VALUE
A constant holding the minimum value an
unsigned short can
have, 0. |
Modifier and Type | Method and Description |
---|---|
int |
compareTo(UShort o) |
double |
doubleValue() |
boolean |
equals(Object obj) |
float |
floatValue() |
int |
hashCode() |
int |
intValue() |
long |
longValue() |
String |
toString() |
static UShort |
valueOf(int value)
Create an
unsigned short |
static UShort |
valueOf(short value)
Create an
unsigned short by masking it with
0xFFFF i.e. |
static UShort |
valueOf(String value)
Create an
unsigned short |
toBigInteger
byteValue, shortValue
public static final int MIN_VALUE
unsigned short
can
have, 0.public static final int MAX_VALUE
unsigned short
can
have, 216-1.public static UShort valueOf(String value) throws NumberFormatException
unsigned short
NumberFormatException
- If value
does not contain a
parsable unsigned short
.public static UShort valueOf(short value)
unsigned short
by masking it with
0xFFFF
i.e. (short) -1
becomes
(ushort) 65535
public static UShort valueOf(int value) throws NumberFormatException
unsigned short
NumberFormatException
- If value
is not in the range
of an unsigned short
public float floatValue()
floatValue
in class Number
public double doubleValue()
doubleValue
in class Number
public int compareTo(UShort o)
compareTo
in interface Comparable<UShort>
Copyright © 2014. All Rights Reserved.