List of usage examples for java.util Objects hashCode
public static int hashCode(Object o)
From source file:mx.edu.um.mateo.general.model.Rol.java
@Override public int hashCode() { int hash = 7; hash = 11 * hash + Objects.hashCode(this.id); hash = 11 * hash + Objects.hashCode(this.version); hash = 11 * hash + Objects.hashCode(this.authority); return hash;//from w w w . ja v a2 s . c om }
From source file:com.jivesoftware.os.upena.shared.LB.java
@Override public int hashCode() { int hash = 5; hash = 71 * hash + Objects.hashCode(this.name); return hash; }
From source file:de.fraunhofer.iosb.ilt.sta.model.core.EntitySetImpl.java
@Override public int hashCode() { int hash = 7; hash = 79 * hash + Objects.hashCode(this.data); hash = 79 * hash + Objects.hashCode(this.navigationLink); return hash;/* w w w . j a v a2 s .c o m*/ }
From source file:com.jbuncle.mysqlsynchroniser.structure.objects.Index.java
@Override public int hashCode() { int hash = 5; hash = 97 * hash + Objects.hashCode(this.tableName); hash = 97 * hash + (this.nonUnique ? 1 : 0); hash = 97 * hash + Objects.hashCode(this.keyName); hash = 97 * hash + Objects.hashCode(this.columnNames); return hash;/*w ww .ja v a 2 s . c om*/ }
From source file:fr.landel.utils.commons.tuple.Single.java
/** * <p>/*from ww w. j a v a 2 s . c om*/ * Returns a suitable hash code. * </p> * * @return the hash code */ @Override public int hashCode() { return Objects.hashCode(this.get()); }
From source file:edu.kit.dama.util.update.types.JavaLibrary.java
@Override public int hashCode() { int hash = 7; hash = 17 * hash + Objects.hashCode(this.fullname); hash = 17 * hash + Objects.hashCode(this.md5); return hash;// www . j a va 2 s .co m }
From source file:com.OfficeBuilding.Domain.Staff.java
@Override public int hashCode() { int hash = 5; hash = 89 * hash + Objects.hashCode(this.staffName); return hash; }
From source file:com.webfileanalyzer.domain.FileStatistic.java
@Override public int hashCode() { int hash = 3; hash = 29 * hash + Objects.hashCode(this.id); hash = 29 * hash + Objects.hashCode(this.fileInDB); hash = 29 * hash + Objects.hashCode(this.fileId); hash = 29 * hash + Objects.hashCode(this.line); hash = 29 * hash + Objects.hashCode(this.maxWord); hash = 29 * hash + Objects.hashCode(this.minWord); hash = 29 * hash + Objects.hashCode(this.lengthLine); hash = 29 * hash + Objects.hashCode(this.avgWord); return hash;//from w ww .j av a 2 s . c om }
From source file:cz.muni.fi.airportapi.dto.StewardCreationalDTO.java
@Override public int hashCode() { int hash = 7; hash = 97 * hash + Objects.hashCode(this.personalIdentificator); return hash;/*from www . j a va2 s. co m*/ }
From source file:com.redhat.lightblue.query.ForEachExpression.java
@Override public int hashCode() { int hash = 5; hash = 97 * hash + Objects.hashCode(this.field); hash = 97 * hash + Objects.hashCode(this.query); hash = 97 * hash + Objects.hashCode(this.update); return hash;// w ww. ja va2s . c om }