List of usage examples for java.util Objects hashCode
public static int hashCode(Object o)
From source file:gr.csri.poeticon.praxicon.db.entities.RelationSet_Relation.java
@Override public int hashCode() { int hash = 7; hash = 47 * hash + Objects.hashCode(this.relation); return hash; }
From source file:th.co.geniustree.intenship.advisor.model.SelectCategory.java
@Override public int hashCode() { int hash = 5; hash = 97 * hash + Objects.hashCode(this.id); return hash; }
From source file:net.bluemix.connectors.core.info.ComposeForMongoDBServiceInfo.java
@Override public int hashCode() { int hash = 5; hash = 53 * hash + Objects.hashCode(this.id); hash = 53 * hash + Objects.hashCode(this.addresses); hash = 53 * hash + Objects.hashCode(this.credentials); hash = 53 * hash + Objects.hashCode(this.options); return hash;/*from ww w . j a va 2s . c om*/ }
From source file:de.micromata.genome.logging.LogAttribute.java
@Override public int hashCode() { return Objects.hashCode(type);// don't because has to be equals * 17 + Objects.hashCode(value); }
From source file:com.jivesoftware.os.routing.bird.shared.TenancyEviction.java
@Override public int hashCode() { int hash = 3; hash = 59 * hash + (int) (this.timestamp ^ (this.timestamp >>> 32)); hash = 59 * hash + Objects.hashCode(this.instanceId); hash = 59 * hash + Objects.hashCode(this.connectToServiceId); hash = 59 * hash + Objects.hashCode(this.portName); hash = 59 * hash + Objects.hashCode(this.tenantId); return hash;//from ww w. j a v a 2 s .c o m }
From source file:br.com.senac.Bean.UsuarioBean.java
@Override public int hashCode() { int hash = 5; hash = 29 * hash + Objects.hashCode(this.usuario); return hash; }
From source file:net.bluemix.connectors.core.info.TwilioServiceInfo.java
@Override public int hashCode() { int hash = 3; hash = 29 * hash + Objects.hashCode(this.id); hash = 29 * hash + Objects.hashCode(this.accountId); hash = 29 * hash + Objects.hashCode(this.authToken); return hash;// ww w .j a v a2 s. c om }
From source file:br.com.esign.logistics.core.Place.java
@Override public int hashCode() { int hash = 3; hash = 11 * hash + Objects.hashCode(this.name); return hash; }
From source file:com.baziaking.blackjack.domain.model.Action.java
@Override public int hashCode() { int hash = 7; hash = 67 * hash + (int) (this.actionId ^ (this.actionId >>> 32)); hash = 67 * hash + (int) (this.gameId ^ (this.gameId >>> 32)); hash = 67 * hash + Objects.hashCode(this.type); hash = 67 * hash + (int) (this.cashTransfered ^ (this.cashTransfered >>> 32)); hash = 67 * hash + Objects.hashCode(this.date); hash = 67 * hash + Objects.hashCode(this.game); return hash;/*from w w w. j a v a 2s .c o m*/ }
From source file:com.santiagolizardo.madcommander.components.filelisting.model.FileListingRow.java
@Override public int hashCode() { int hash = 5; hash = 97 * hash + Objects.hashCode(this.file); return hash; }