List of usage examples for java.util Objects hashCode
public static int hashCode(Object o)
From source file:uk.ac.ebi.ep.data.search.model.Taxonomy.java
@Override public int hashCode() { int hash = 7; hash = 29 * hash + Objects.hashCode(this.taxId); return hash; }
From source file:th.co.geniustree.dental.model.Bill.java
@Override public int hashCode() { int hash = 3; hash = 61 * hash + Objects.hashCode(this.id); return hash; }
From source file:org.sigmah.server.domain.importation.VariableBudgetSubFieldId.java
@Override public int hashCode() { int hash = 7; hash = 41 * hash + Objects.hashCode(this.varId); hash = 41 * hash + Objects.hashCode(this.budgetSubFieldId); hash = 41 * hash + Objects.hashCode(this.variableFlexibleId); return hash;//from w w w . j a v a2 s. co m }
From source file:com.offbynull.portmapper.upnpigd.UpnpIgdDevice.java
@Override public int hashCode() { int hash = 7; hash = 17 * hash + Objects.hashCode(this.selfAddress); hash = 17 * hash + Objects.hashCode(this.gatewayAddress); // hash = 17 * hash + Objects.hashCode(this.name); // hash = 17 * hash + Objects.hashCode(this.url); return hash;/*from w w w. java 2 s.c o m*/ }
From source file:org.sleuthkit.autopsy.timeline.filters.TextFilter.java
@Override public int hashCode() { int hash = 5; hash = 29 * hash + Objects.hashCode(this.text.get()); return hash; }
From source file:com.offbynull.coroutines.instrumenter.asm.ClassInformation.java
@Override public int hashCode() { int hash = 3; hash = 47 * hash + Objects.hashCode(this.superClassName); hash = 47 * hash + Objects.hashCode(this.interfaces); hash = 47 * hash + (this.interfaceMarker ? 1 : 0); return hash;/*from w ww .j av a 2 s . c om*/ }
From source file:org.consultjr.mvc.model.SystemConfig.java
@Override public int hashCode() { int hash = 3; hash = 43 * hash + Objects.hashCode(this.key); return hash; }
From source file:org.apache.ranger.plugin.model.RangerPolicyResourceSignature.java
@Override public int hashCode() { // we assume no collision return Objects.hashCode(_hash); }
From source file:org.ocelotds.messaging.MessageToClient.java
@Override public int hashCode() { int hash = 7; hash = 83 * hash + Objects.hashCode(this.id); return hash; }
From source file:com.offbynull.portmapper.upnpigd.UpnpIgdService.java
@Override public int hashCode() { int hash = 5; hash = 79 * hash + Objects.hashCode(this.serviceReference); hash = 79 * hash + Objects.hashCode(this.leaseDurationRange); hash = 79 * hash + Objects.hashCode(this.externalPortRange); return hash;//from w w w . j av a 2 s . c om }