List of usage examples for java.util Objects hashCode
public static int hashCode(Object o)
From source file:org.protempa.proposition.value.ValueListBuilder.java
@Override public int hashCode() { int hash = 7; hash = 59 * hash + Objects.hashCode(this.elements); return hash; }
From source file:com.mastfrog.scamper.Address.java
@Override public int hashCode() { int hash = 7; hash = 37 * hash + Objects.hashCode(this.host); hash = 37 * hash + this.port; return hash;/*w ww.j a v a 2 s .c o m*/ }
From source file:be.vdab.voertuigen.Personenwagen.java
@Override public int hashCode() { int hash = 3; hash = 97 * hash + Objects.hashCode(this.nummerplaat) + Objects.hashCode(this.kleur); return hash;/*from w w w. j a v a 2s.com*/ }
From source file:com.compomics.colims.core.ontology.ols.Ontology.java
@Override public int hashCode() { int hash = 7; hash = 83 * hash + Objects.hashCode(this.nameSpace); hash = 83 * hash + Objects.hashCode(this.prefix); hash = 83 * hash + Objects.hashCode(this.title); return hash;//from w w w . ja v a 2 s . co m }
From source file:th.co.geniustree.intenship.advisor.model.CategoryGroupCourse.java
@Override public int hashCode() { int hash = 5; hash = 37 * hash + Objects.hashCode(this.id); return hash; }
From source file:at.ac.tuwien.dsg.cloud.utilities.messaging.lightweight.rabbitMq.TypeHandler.java
@Override public int hashCode() { int hash = 3; hash = 89 * hash + Objects.hashCode(this.types); return hash; }
From source file:com.pamarin.income.model.SelectionModel.java
@Override public int hashCode() { int hash = 7; hash = 43 * hash + Objects.hashCode(this.data); return hash; }
From source file:konditer.client.bean.GenId.java
@Override public int hashCode() { int hash = 7; hash = 97 * hash + Objects.hashCode(this.tableName); hash = 97 * hash + Objects.hashCode(this.rowCount); return hash;//from w w w . j a v a2s . c o m }
From source file:com.jivesoftware.os.routing.bird.shared.ConnectionDescriptors.java
@Override public int hashCode() { int hash = 3; hash = 41 * hash + (int) (this.timestamp ^ (this.timestamp >>> 32)); hash = 41 * hash + Objects.hashCode(this.connectionDescriptors); return hash;/*from w w w. ja v a 2 s.co m*/ }
From source file:com.jivesoftware.os.upena.shared.Cluster.java
@Override public int hashCode() { int hash = 5; hash = 37 * hash + Objects.hashCode(this.name); return hash; }