List of usage examples for java.util Objects hashCode
public static int hashCode(Object o)
From source file:com.nuevebit.miroculus.mrna.core.MiRNA.java
@Override public int hashCode() { int hash = 3; hash = 13 * hash + Objects.hashCode(this.name); hash = 13 * hash + Objects.hashCode(this.type); return hash;/*from w w w .ja v a2s. com*/ }
From source file:com.mac.holdempoker.app.impl.SimplePlayer.java
@Override public int hashCode() { int hash = 3; hash = 83 * hash + Objects.hashCode(this.playerFirstName); hash = 83 * hash + Objects.hashCode(this.playerLastName); hash = 83 * hash + Objects.hashCode(this.playerEmail); return hash;/*from w ww . ja v a2 s. co m*/ }
From source file:uno.informatics.data.pojo.SimpleEntityPojo.java
@Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + Objects.hashCode(this.uniqueIdentifier); return result; }
From source file:com.pamarin.income.model.User.java
@Override public int hashCode() { int hash = 7; hash = 89 * hash + Objects.hashCode(this.id); return hash; }
From source file:org.jboss.arquillian.model.testSuite.Mask.java
@Override public int hashCode() { int hash = 5; hash = 11 * hash + Objects.hashCode(this.getPattern()); hash = 11 * hash + this.width; hash = 11 * hash + this.height; hash = 11 * hash + this.top; hash = 11 * hash + this.left; return hash;/*w w w. ja va2 s .co m*/ }
From source file:com.dhenton9000.birt.persistence.entities.ProductLines.java
@Override public int hashCode() { int hash = 5; hash = 43 * hash + Objects.hashCode(this.id); return hash; }
From source file:epgtools.libepgupdate.updator.config.Config.java
@Override public int hashCode() { int hash = 3; hash = 43 * hash + Objects.hashCode(this.connection); hash = 43 * hash + Objects.hashCode(this.xMLDirectory); hash = 43 * hash + Objects.hashCode(this.xMLFileCharCode); hash = 43 * hash + Objects.hashCode(this.paidBroadcastings); return hash;//from w w w .j a va 2 s . c o m }
From source file:com.tesora.dve.sql.node.expression.ActualLiteralExpression.java
@Override public int hashCode() { final int prime = 31; int result = 17; result = prime * result + this.getValueType(); result = prime * result + Objects.hashCode(this.value); return result; }
From source file:org.apache.tajo.plan.logical.JoinNode.java
@Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + joinSpec.hashCode(); result = prime * result + Objects.hashCode(targets); return result; }
From source file:com.josue.kingdom.application.entity.Application.java
@Override public int hashCode() { int hash = 3; hash = 47 * hash + Objects.hashCode(this.name); hash = 47 * hash + Objects.hashCode(this.appKey); hash = 47 * hash + Objects.hashCode(this.secret); hash = 47 * hash + Objects.hashCode(this.company); hash = 47 * hash + Objects.hashCode(this.email); hash = 47 * hash + Objects.hashCode(this.status); return hash;//from w w w.j a v a 2s . c o m }