List of usage examples for java.util Objects hashCode
public static int hashCode(Object o)
From source file:pl.lodz.p.edu.ftims.poi.poi.entities.Package.java
@Override public int hashCode() { int hash = 7; hash = 37 * hash + Objects.hashCode(this.ID); return hash; }
From source file:it.univaq.disim.mobile.cityshop.business.domain.Utente.java
@Override public int hashCode() { int hash = 7; hash = 89 * hash + Objects.hashCode(this.email); hash = 89 * hash + Objects.hashCode(this.nome); hash = 89 * hash + Objects.hashCode(this.cognome); hash = 89 * hash + Objects.hashCode(this.password); hash = 89 * hash + Objects.hashCode(this.foto); hash = 89 * hash + Objects.hashCode(this.catecorie); hash = 89 * hash + Objects.hashCode(this.brands); return hash;// w w w. j av a2s .c om }
From source file:channellistmaker.dataextractor.channel.Channel.java
@Override public int hashCode() { int hash = 7; hash = 59 * hash + Objects.hashCode(this.keyfields); hash = 59 * hash + this.physicalChannelNumber; hash = 59 * hash + Objects.hashCode(this.displayNameLang); hash = 59 * hash + Objects.hashCode(this.displayName); return hash;// www .j a v a 2s .c om }
From source file:edu.emory.cci.aiw.i2b2etl.dest.metadata.conceptid.ModifierConceptId.java
@Override public int hashCode() { int hash = 7; hash = 79 * hash + Objects.hashCode(this.propId); hash = 79 * hash + Objects.hashCode(this.propertyName); hash = 79 * hash + Objects.hashCode(this.conceptCode); hash = 79 * hash + Objects.hashCode(this.value); return hash;/* w ww . jav a 2s. c om*/ }
From source file:com.springrest.domain.Employee.java
@Override public int hashCode() { int hash = 3; hash = 53 * hash + this.id; hash = 53 * hash + Objects.hashCode(this.firstName); hash = 53 * hash + Objects.hashCode(this.lastName); hash = 53 * hash + Objects.hashCode(this.email); hash = 53 * hash + Objects.hashCode(this.telephone); hash = 53 * hash + Objects.hashCode(this.address); hash = 53 * hash + Objects.hashCode(this.createdDate); return hash;/*from w w w. j a v a 2s . c om*/ }
From source file:org.jnosql.artemis.reflection.DefaultClassRepresentation.java
@Override public int hashCode() { return Objects.hashCode(classInstance); }
From source file:org.hawkular.accounts.api.model.BaseEntity.java
@Override public int hashCode() { int hash = 5; hash = 71 * hash + Objects.hashCode(this.id); return hash; }
From source file:th.co.geniustree.dental.model.Employee.java
@Override public int hashCode() { int hash = 3; hash = 29 * hash + Objects.hashCode(this.id); return hash; }
From source file:com.github.horrorho.inflatabledonkey.cloud.cloudkit.CKInit.java
@Override public int hashCode() { int hash = 7; hash = 19 * hash + Objects.hashCode(this.cloudKitDeviceUrl); hash = 19 * hash + Objects.hashCode(this.cloudKitDatabaseUrl); hash = 19 * hash + Arrays.deepHashCode(this.containers); hash = 19 * hash + Objects.hashCode(this.cloudKitShareUrl); hash = 19 * hash + Objects.hashCode(this.cloudKitUserId); return hash;/*from w w w. j a va 2 s .com*/ }
From source file:com.conwet.silbops.model.Constraint.java
@Override public int hashCode() { return 41 * operator.hashCode() + Objects.hashCode(value); }