List of usage examples for java.util Objects hashCode
public static int hashCode(Object o)
From source file:com.redhat.lightblue.query.Value.java
@Override public int hashCode() { int hash = 5; hash = 59 * hash + Objects.hashCode(this.value); return hash; }
From source file:org.sigmah.server.domain.category.CategoryType.java
/** * {@inheritDoc}//from w w w . j a v a 2 s .c o m */ @Override public int hashCode() { int hash = 7; hash = 23 * hash + Objects.hashCode(this.label); hash = 23 * hash + Objects.hashCode(this.icon); return hash; }
From source file:net.bluemix.connectors.core.info.IBMGraphDbServiceInfo.java
@Override public int hashCode() { int hash = 5; hash = 37 * hash + Objects.hashCode(this.id); hash = 37 * hash + Objects.hashCode(this.apiUrl); hash = 37 * hash + Objects.hashCode(this.username); hash = 37 * hash + Objects.hashCode(this.password); return hash;/* w w w . j ava 2 s .c o m*/ }
From source file:org.protempa.proposition.value.OrdinalValue.java
@Override public int hashCode() { int hash = 3; hash = 67 * hash + Objects.hashCode(this.val); hash = 67 * hash + this.index; return hash;/*from www . ja v a 2 s . c o m*/ }
From source file:org.springframework.social.spotify.api.SpotifyTrack.java
@Override public int hashCode() { int hash = 5; hash = 89 * hash + Objects.hashCode(this.id); return hash; }
From source file:th.co.geniustree.intenship.advisor.model.Account.java
@Override public int hashCode() { int hash = 7; hash = 43 * hash + Objects.hashCode(this.id); return hash; }
From source file:de.digiway.rapidbreeze.client.model.collector.CollectorModel.java
@Override public int hashCode() { int hash = 7; hash = 97 * hash + Objects.hashCode(this.url.getValue()); return hash;/*from w w w. j a v a 2 s . c o m*/ }
From source file:una.cr.design.model.Cita.java
/** * * @return toString/*ww w . j a v a2 s. com*/ */ @Override public int hashCode() { int hash = 5; hash = 97 * hash + this.idCita; hash = 97 * hash + Objects.hashCode(this.paciente); hash = 97 * hash + Objects.hashCode(this.consultorio); hash = 97 * hash + Objects.hashCode(this.fecha); hash = 97 * hash + Objects.hashCode(this.confirmar); return hash; }
From source file:com.redhat.lightblue.query.RValueExpression.java
@Override public int hashCode() { int hash = 7; hash = 79 * hash + Objects.hashCode(this.value); hash = 79 * hash + Objects.hashCode(this.path); hash = 79 * hash + Objects.hashCode(this.type); return hash;/*from ww w. j a v a 2 s . c o m*/ }
From source file:fi.johannes.kata.ocr.cells.Cell.java
@Override public int hashCode() { int hash = 3; hash = 97 * hash + Objects.hashCode(this.cellContent); return hash; }