@Override public boolean equals(Object other) { if (!(other instanceof CacheKey)) { return false; } CacheKey that = (CacheKey) other; return entityOrRoleName.equals(that.entityOrRoleName) && type.isEqual(key, that.key) && EqualsHelper.equals(tenantId, that.tenantId); }
public boolean equals(Object other) { CollectionKey that = (CollectionKey) other; return that.role.equals(role) && keyType.isEqual(that.key, key, entityMode, factory); }
public boolean equals(Object other) { EntityUniqueKey that = (EntityUniqueKey) other; return that.entityName.equals(entityName) && that.uniqueKeyName.equals(uniqueKeyName) && keyType.isEqual(that.key, key); }