@Override public int hashCode() { return key.hashCode(); } }
@Override public int hashCode() { return key.hashCode(); } }
@Override public final int hashCode() { return key.hashCode(); } }
@Override public int hashCode() { //It is intentional that we only look at id. return key != null ? key.hashCode() : 0; }
@Override public int hashCode() { int result = locale != null ? locale.hashCode() : 0; result = 31 * result + (applicationKey != null ? applicationKey.hashCode() : 0); return result; }
@Override public final int hashCode() { //It is intentional that we only look at the id. return getKey().hashCode(); }
@Override public int hashCode() { int result = key.hashCode(); result = 31 * result + groups.hashCode(); result = 31 * result + defaultGroups.hashCode(); return result; }