List of usage examples for java.util Objects hashCode
public static int hashCode(Object o)
From source file:uk.ac.ebi.ep.ebeye.search.Entry.java
@Override public int hashCode() { int hash = 3; hash = 67 * hash + Objects.hashCode(this.getTitle()); return hash; }
From source file:com.linksinnovation.elearning.model.Topic.java
@Override public int hashCode() { int hash = 7; hash = 79 * hash + Objects.hashCode(this.id); return hash; }
From source file:com.tesora.dve.sql.node.expression.ActualLiteralExpression.java
@Override protected int selfHashCode() { return Objects.hashCode(this.value); }
From source file:com.jivesoftware.os.upena.shared.ReleaseGroup.java
@Override public int hashCode() { int hash = 5; hash = 89 * hash + Objects.hashCode(this.name); hash = 89 * hash + Objects.hashCode(this.email); hash = 89 * hash + Objects.hashCode(this.version); hash = 89 * hash + Objects.hashCode(this.repository); hash = 89 * hash + Objects.hashCode(this.description); hash = 89 * hash + Objects.hashCode(this.autoRelease); return hash;//from w w w . j a v a 2 s. c o m }
From source file:org.travis4j.model.json.AbstractJsonObject.java
@Override public int hashCode() { return Objects.hashCode(json); }
From source file:com.sp.keyword_generator.Keyword.java
@Override public int hashCode() { int hash = 7; hash = 41 * hash + Objects.hashCode(keyword); return hash; }
From source file:gr.csri.poeticon.praxicon.db.entities.OntologicalDomain.java
@Override public int hashCode() { int hash = 5; hash = 53 * hash + Objects.hashCode(this.domainName); return hash; }
From source file:io.headpro.entity.PeriodTotal.java
@Override public int hashCode() { int hash = 7; hash = 53 * hash + Objects.hashCode(this.startDate); hash = 53 * hash + Objects.hashCode(this.endDate); hash = 53 * hash + Objects.hashCode(this.total); hash = 53 * hash + this.position; return hash;// w w w.j av a 2s . c o m }
From source file:org.protempa.valueset.ValueSetElementBuilder.java
@Override public int hashCode() { int hash = 7; hash = 61 * hash + Objects.hashCode(this.valueBuilder); hash = 61 * hash + Objects.hashCode(this.displayName); hash = 61 * hash + Objects.hashCode(this.abbrevDisplayName); hash = 61 * hash + Arrays.deepHashCode(this.attributeBuilders); return hash;//from w w w . jav a 2 s.c o m }
From source file:com.OfficeBuilding.Domain.Requester.java
@Override public int hashCode() { int hash = 3; hash = 97 * hash + Objects.hashCode(this.staffName); return hash; }