Method Summary |
|
final public static Object | clone(Object o) Clones the specified object. |
final public static boolean | equals(Object a, Object b) Tests whether two objects are equals.
It takes care of the null case. |
final public static int | hashCode(boolean[] v) Generates hash codes for an array of boolean. |
final public static int | hashCode(byte[] v) Generates hash codes for an array of bytes. |
final public static int | hashCode(byte[] v, int len) Generates hash codes for an array of bytes up to the specified length. |
final public static int | hashCode(char[] v) Generates hash codes for an array. |
final public static int | hashCode(short[] v) Generates hash codes for an array. |
final public static int | hashCode(int[] v) Generates hash codes for an array. |
final public static int | hashCode(long[] v) Generates hash codes for an array. |
final public static int | hashCode(Object o) Returns the object's hash code, or zero if null. |
final public static int | nextHashCode(int prevHashVal, int newVal) Returns the next hash value by giving the previous one and a new one. |
final public static byte[] | toByteArray(int v) Converts an integer to a big-endian byte array. |
final public static byte[] | toByteArray(long v) Converts a long to a big-endian byte array. |
final public static byte[] | toByteArray(short v) Converts a short to a big-endian byte array. |
final public static byte[] | toByteArray(byte v) Converts a byte to a big-endian byte array. |
final public static char[] | toCharArray(Object o) Converts any object to a character array. |
final public static String | toString(Object o) Converts any object to a string. |