List of usage examples for java.util Objects hash
public static int hash(Object... values)
From source file:com.antonjohansson.geolocation.framework.domain.LookupResult.java
@Override public int hashCode() { return Objects.hash(ip); }
From source file:com.vsct.dt.hesperides.applications.InstanceModel.java
@Override public int hashCode() { return Objects.hash(keys); }
From source file:com.vsct.dt.hesperides.indexation.model.KeyValuePropertyIndexation.java
@Override public int hashCode() { return 31 * super.hashCode() + Objects.hash(value); }
From source file:com.facebook.presto.kinesis.KinesisTableLayoutHandle.java
@Override public int hashCode() { return Objects.hash(tableHandle); }
From source file:org.awesomeagile.integrations.hackpad.HackpadStatus.java
@Override public int hashCode() { return Objects.hash(success); }
From source file:com.thoughtworks.go.config.CaseInsensitiveString.java
@Override public int hashCode() { return Objects.hash(lowerCaseName); }
From source file:org.hawkular.component.availcreator.AvailDataMessage.java
@Override public int hashCode() { return Objects.hash(availData); }
From source file:com.greendot.entity.product.Product.java
@Override public int hashCode() { if (productId != null) return Objects.hashCode(productId); return Objects.hash(productName); }
From source file:si.lodrant.chitchat.entities.StandardResponse.java
@Override public int hashCode() { return Objects.hash(this.status); }
From source file:org.awesomeagile.integrations.hackpad.PadIdentity.java
@Override public int hashCode() { return Objects.hash(padId); }