List of usage examples for java.util Objects hashCode
public static int hashCode(Object o)
From source file:br.com.joaops.awc.model.SystemUser.java
@Override public int hashCode() { int hash = 5; hash = 53 * hash + Objects.hashCode(this.id); hash = 53 * hash + Objects.hashCode(this.firstName); hash = 53 * hash + Objects.hashCode(this.middleName); hash = 53 * hash + Objects.hashCode(this.lastName); hash = 53 * hash + Objects.hashCode(this.email); hash = 53 * hash + Objects.hashCode(this.password); hash = 53 * hash + Objects.hashCode(this.accountExpiration); hash = 53 * hash + Objects.hashCode(this.accountCanExpire); hash = 53 * hash + Objects.hashCode(this.locked); hash = 53 * hash + Objects.hashCode(this.credentialExpiration); hash = 53 * hash + Objects.hashCode(this.credentialCanExpire); hash = 53 * hash + Objects.hashCode(this.enabled); hash = 53 * hash + Objects.hashCode(this.systemUserPermission); return hash;//w ww .j av a2 s.c o m }
From source file:com.medlog.webservice.vo.MedicationVO.java
@Override public int hashCode() { int hash = 3; hash = 61 * hash + this.medicationID; hash = 61 * hash + Objects.hashCode(this.patientID); hash = 61 * hash + Objects.hashCode(this.pharmID); hash = 61 * hash + Objects.hashCode(this.sig); hash = 61 * hash + Objects.hashCode(this.dosage); return hash;/*from w ww . j av a 2s .c o m*/ }
From source file:org.fcrepo.transform.transformations.LDPathTransform.java
@Override public int hashCode() { return Objects.hashCode(query); }
From source file:mx.edu.um.mateo.activos.model.BajaActivo.java
@Override public int hashCode() { int hash = 7; hash = 23 * hash + Objects.hashCode(this.id); hash = 23 * hash + Objects.hashCode(this.version); hash = 23 * hash + Objects.hashCode(this.creador); hash = 23 * hash + Objects.hashCode(this.activo); return hash;/* www. j av a 2 s. co m*/ }
From source file:com.esri.geoportal.harvester.api.defs.EntityDefinition.java
@Override public int hashCode() { int hash = 5; hash = 89 * hash + Objects.hashCode(this.type); hash = 89 * hash + Objects.hashCode(this.properties); return hash;//w w w . j a va 2 s . c o m }
From source file:com.tascape.qa.th.android.model.UIANode.java
@Override public int hashCode() { int hash = 7; hash = 41 * hash + this.index; hash = 41 * hash + Objects.hashCode(this.text); hash = 41 * hash + Objects.hashCode(this.resourceId); hash = 41 * hash + Objects.hashCode(this.klass); hash = 41 * hash + Objects.hashCode(this.pakkage); hash = 41 * hash + Objects.hashCode(this.contentDesc); hash = 41 * hash + (this.checkable ? 1 : 0); hash = 41 * hash + (this.checked ? 1 : 0); hash = 41 * hash + (this.clickable ? 1 : 0); hash = 41 * hash + (this.enabled ? 1 : 0); hash = 41 * hash + (this.focusable ? 1 : 0); hash = 41 * hash + (this.focused ? 1 : 0); hash = 41 * hash + (this.scrollable ? 1 : 0); hash = 41 * hash + (this.longClickable ? 1 : 0); hash = 41 * hash + (this.password ? 1 : 0); hash = 41 * hash + (this.selected ? 1 : 0); hash = 41 * hash + Objects.hashCode(this.bounds); // hash = 41 * hash + Objects.hashCode(this.nodes); // hash = 41 * hash + Objects.hashCode(this.parent); hash = 41 * hash + Objects.hashCode(this.device); return hash;//ww w . j a va 2s . c om }
From source file:th.co.geniustree.dental.model.Patient.java
@Override public int hashCode() { int hash = 7; hash = 47 * hash + Objects.hashCode(this.id); return hash; }
From source file:libepg.epg.section.descriptor.Descriptor.java
/** * @return ????????//from w ww . j ava 2s . c o m */ @Override public final int hashCode() { int hash = 7; hash = 83 * hash + Objects.hashCode(this.data); hash = 83 * hash + Objects.hashCode(this.descriptorTag); return hash; }
From source file:com.dhenton9000.birt.persistence.entities.Offices.java
@Override public int hashCode() { int hash = 7; hash = 79 * hash + Objects.hashCode(this.officeCode); return hash; }
From source file:com.dhenton9000.birt.persistence.entities.Customers.java
@Override public int hashCode() { int hash = 7; hash = 79 * hash + Objects.hashCode(this.getCustomerNumber()); return hash;/*from ww w. j a va 2 s . c om*/ }