List of usage examples for java.util Objects hashCode
public static int hashCode(Object o)
From source file:de.digiway.rapidbreeze.client.model.config.ServerConfigurationModel.java
@Override public int hashCode() { int hash = 7; hash = 53 * hash + Objects.hashCode(this.key); return hash; }
From source file:th.co.geniustree.dental.model.OrderBill.java
@Override public int hashCode() { int hash = 5; hash = 67 * hash + Objects.hashCode(this.id); return hash; }
From source file:org.n52.shetland.ogc.om.TimeLocationValueTriple.java
@Override public int hashCode() { return 37 * super.hashCode() + Objects.hashCode(this.getLocation()); }
From source file:com.willwinder.universalgcodesender.model.Position.java
@Override public int hashCode() { int hash = 3; hash = 83 * hash + Objects.hashCode(this.units); return hash; }
From source file:net.bluemix.connectors.core.info.WatsonDiscoveryServiceInfo.java
@Override public int hashCode() { int hash = 5; hash = 17 * hash + Objects.hashCode(this.id); hash = 17 * hash + Objects.hashCode(this.username); hash = 17 * hash + Objects.hashCode(this.password); hash = 17 * hash + Objects.hashCode(this.url); return hash;/*from w w w . j a v a 2 s. co m*/ }
From source file:libepg.epg.section.SectionBody.java
@Override public int hashCode() { int hash = 3; hash = 73 * hash + Objects.hashCode(this.tableID); hash = 73 * hash + Objects.hashCode(this.data); return hash;//www . j a v a2 s.co m }
From source file:net.bluemix.connectors.core.info.WatsonConversationServiceInfo.java
@Override public int hashCode() { int hash = 5; hash = 17 * hash + Objects.hashCode(this.username); hash = 17 * hash + Objects.hashCode(this.password); hash = 17 * hash + Objects.hashCode(this.url); return hash;/*from w w w. ja v a 2 s . co m*/ }
From source file:net.bluemix.connectors.core.info.MessageHubServiceInfo.java
@Override public int hashCode() { int hash = 5; hash = 73 * hash + Objects.hashCode(this.id); hash = 73 * hash + Objects.hashCode(this.brokers); hash = 73 * hash + Objects.hashCode(this.username); hash = 73 * hash + Objects.hashCode(this.password); return hash;/*from w ww . ja va 2s . c o m*/ }
From source file:com.github.horrorho.inflatabledonkey.data.CKContainer.java
@Override public int hashCode() { int hash = 5; hash = 71 * hash + Objects.hashCode(this.name); hash = 71 * hash + Objects.hashCode(this.env); hash = 71 * hash + Objects.hashCode(this.ckDeviceUrl); hash = 71 * hash + Objects.hashCode(this.url); return hash;// w ww . j a va 2 s . c om }
From source file:org.fcrepo.transform.transformations.SparqlQueryTransform.java
@Override public int hashCode() { return Objects.hashCode(getQuery()); }