List of usage examples for java.util Objects hashCode
public static int hashCode(Object o)
From source file:org.eclipse.smarthome.binding.lifx.internal.fields.MACAddress.java
@Override public int hashCode() { int hash = 7; hash = 97 * hash + Objects.hashCode(this.hex); return hash; }
From source file:com.offbynull.portmapper.upnpigd.UpnpIgdServiceReference.java
@Override public int hashCode() { int hash = 7; hash = 19 * hash + Objects.hashCode(this.device); hash = 19 * hash + Objects.hashCode(this.serviceType); hash = 19 * hash + Objects.hashCode(this.serviceId); hash = 19 * hash + Objects.hashCode(this.controlUrl); hash = 19 * hash + Objects.hashCode(this.scpdUrl); return hash;// w ww . j a v a 2 s . co m }
From source file:com.josue.kingdom.credential.entity.Manager.java
@Override public int hashCode() { int hash = 3; hash = 17 * hash + Objects.hashCode(this.firstName); hash = 17 * hash + Objects.hashCode(this.lastName); hash = 17 * hash + Objects.hashCode(this.email); hash = 17 * hash + Objects.hashCode(this.username); hash = 17 * hash + Objects.hashCode(this.password); hash = 17 * hash + Objects.hashCode(this.status); return hash;//from w ww. jav a2s . c o m }
From source file:org.protempa.PropertyDefinitionBuilder.java
@Override public int hashCode() { int hash = 7; hash = 83 * hash + Objects.hashCode(this.id); hash = 83 * hash + Objects.hashCode(this.displayName); hash = 83 * hash + Objects.hashCode(this.valueType); hash = 83 * hash + Objects.hashCode(this.valueSetId); hash = 83 * hash + Objects.hashCode(this.declaringPropId); hash = 83 * hash + Objects.hashCode(this.propId); return hash;/*from w w w .ja v a 2 s.c om*/ }
From source file:de.micromata.genome.util.types.Triple.java
@Override public int hashCode() { return (Objects.hashCode(left) * 31 + Objects.hashCode(middle)) * 31 + Objects.hashCode(right); }
From source file:com.sarm.aussiepayslipgenerator.view.beans.EmployeeInfo.java
@Override public int hashCode() { int hash = 7; hash = 89 * hash + Objects.hashCode(this.firstName); hash = 89 * hash + Objects.hashCode(this.lastName); hash = 89 * hash + Objects.hashCode(this.annualSalary); hash = 89 * hash + Objects.hashCode(this.superRate); hash = 89 * hash + Objects.hashCode(this.payslip); hash = 89 * hash + Objects.hashCode(this.startDate); hash = 89 * hash + Objects.hashCode(this.endOfMonth); hash = 89 * hash + Objects.hashCode(this.startingPeriod); hash = 89 * hash + Objects.hashCode(this.endingPeriod); return hash;/* w ww.j a v a 2 s . c o m*/ }
From source file:com.github.erchu.beancp.PropertyBindingSide.java
@Override public int hashCode() { int hash = 5; hash = 53 * hash + Objects.hashCode(this._name); hash = 53 * hash + Objects.hashCode(this._valueClass); return hash;//from w w w. j a v a 2 s.co m }
From source file:com.epam.ipodromproject.domain.Horse.java
@Override public int hashCode() { int hash = 5; hash = 19 * hash + Objects.hashCode(this.name); return hash; }
From source file:org.springframework.social.spotify.api.SpotifyAlbum.java
@Override public int hashCode() { int hash = 5; hash = 29 * hash + Objects.hashCode(this.id); return hash; }
From source file:com.redhat.lightblue.query.UnsetExpression.java
@Override public int hashCode() { int hash = 7; hash = 29 * hash + Objects.hashCode(this.fields); return hash; }