Home | History | Annotate | Download | only in util

Lines Matching refs:hashCode

36  * {@link Object#equals equals} and {@link Object#hashCode hashCode} methods.
56 public static int hashCode(final int seed, final int hashcode) {
57 return seed * HASH_OFFSET + hashcode;
60 public static int hashCode(final int seed, final boolean b) {
61 return hashCode(seed, b ? 1 : 0);
64 public static int hashCode(final int seed, final Object obj) {
65 return hashCode(seed, obj != null ? obj.hashCode() : 0);