Você está na página 1de 4

INTEGER LONG

static final int MIN_VALUE; static final long MIN_VALUE;


static final int MAX_VALUE; static final long MAX_VALUE;

static final int SIZE; static final int SIZE;


static final int BYTES; static final int BYTES;
static String toString(int, int); static String toString(long, int);
static String toUnsignedString(int, int); static String toUnsignedString(long, int);
static String toHexString(int); static String toHexString(long);
static String toOctalString(int); static String toOctalString(long);
static String toBinaryString(int); static String toBinaryString(long);

static int formatUnsignedInt(int, int, char[], int, int) static int formatUnsignedLong(long, int, char[], int, int
static String toString(int); static String toString(long);
static String toUnsignedString(int); static String toUnsignedString(long);
static void getChars(int, int, char[]); static void getChars(long, int, char[]);
static int stringSize(int); static int stringSize(long);
static int parseInt(String, int) throws NumberFor static long parseLong(String, int) throws NumberFor
static int parseInt(String) throws NumberFormatE static long parseLong(String) throws NumberFormatE
static int parseUnsignedInt(String, int) throws static long parseUnsignedLong(String, int) throws
static int parseUnsignedInt(String) throws Numbe static long parseUnsignedLong(String) throws Numb
static Integer valueOf(String, int) throws Number static Long valueOf(String, int) throws NumberForma
static Integer valueOf(String) throws NumberForm static Long valueOf(String) throws NumberFormatExc
static Integer valueOf(int); static Long valueOf(long);
Integer(int); Long(long);
Integer(String) throws NumberFormatException; Long(String) throws NumberFormatException;
byte byteValue(); byte byteValue();
short shortValue(); short shortValue();
int intValue(); int intValue();
long longValue(); long longValue();
float floatValue(); float floatValue();
double doubleValue(); double doubleValue();
String toString(); String toString();
int hashCode(); int hashCode();
static int hashCode(int); static int hashCode(long);
boolean equals(Object); boolean equals(Object);
static Integer getInteger(String); static Long getLong(String);
static Integer getInteger(String, int); static Long getLong(String, long);
static Integer getInteger(String, Integer); static Long getLong(String, Long);
int compareTo(Integer); int compareTo(Long);
static int compare(int, int); static int compare(long, long);
static int compareUnsigned(int, int); static int compareUnsigned(long, long);
static int divideUnsigned(int, int); static long divideUnsigned(long, long);
static int remainderUnsigned(int, int); static long remainderUnsigned(long, long);
static int highestOneBit(int); static long highestOneBit(long);
static int lowestOneBit(int); static long lowestOneBit(long);
static int numberOfLeadingZeros(int); static int numberOfLeadingZeros(long);
static int numberOfTrailingZeros(int); static int numberOfTrailingZeros(long);
static int bitCount(int); static int bitCount(long);
static int rotateLeft(int, int); static long rotateLeft(long, int);
static int rotateRight(int, int); static long rotateRight(long, int);
static int reverse(int); static long reverse(long);
static int signum(int); static int signum(long);
static int reverseBytes(int); static long reverseBytes(long);
static int sum(int, int); static long sum(long, long);
static int max(int, int); static long max(long, long);
static int min(int, int); static long min(long, long);
int compareTo(Object); int compareTo(Object);
static final char[] digits;
static final char[] DigitTens;
static final char[] DigitOnes;
static final int[] sizeTable;
static long toUnsignedLong(int);
static Integer decode(String) throws NumberForm static Long decode(String) throws NumberFormatException;
BYTE
static final byte MIN_VALUE;
static final byte MAX_VALUE;

static final int SIZE;


static final int BYTES;
static String toString(byte);
static Byte valueOf(byte);
static byte parseByte(String, int) throws NumberFormatException;
static byte parseByte(String) throws NumberFormatException;
static Byte valueOf(String, int) throws NumberFormatException;
static Byte valueOf(String) throws NumberFormatException;
static Byte decode(String) throws NumberFormatException;
Byte(byte);
Byte(String) throws NumberFormatException;
byte byteValue();
short shortValue();
int intValue();
long longValue();
float floatValue();
double doubleValue();
String toString();
int hashCode();
static int hashCode(byte);
boolean equals(Object);
int compareTo(Byte);
static int compare(byte, byte);
static int toUnsignedInt(byte);
static long toUnsignedLong(byte);
int compareTo(Object);
rFormatException;

Você também pode gostar