List of usage examples for java.util Objects hashCode
public static int hashCode(Object o)
From source file:libepg.epg.section.body.servicedescriptiontable.ServiceDescriptionTableRepeatingPart.java
@Override public int hashCode() { int hash = 7; hash = 47 * hash + Objects.hashCode(this.data); return hash; }
From source file:com.buffalokiwi.aerodrome.jet.products.ProductVariationGroupRec.java
@Override public int hashCode() { int hash = 7; hash = 17 * hash + Objects.hashCode(this.parentSku); hash = 17 * hash + Objects.hashCode(this.variationRefinements); hash = 17 * hash + Objects.hashCode(this.childSkus); hash = 17 * hash + Objects.hashCode(this.groupTitle); hash = 17 * hash + Objects.hashCode(this.relationship); return hash;//from w ww . ja v a 2 s . c o m }
From source file:org.zlogic.voidreader.feed.Feed.java
@Override public int hashCode() { int hash = 3; hash = 97 * hash + Objects.hashCode(this.url); return hash; }
From source file:mx.edu.um.mateo.inventario.model.FacturaAlmacen.java
@Override public int hashCode() { int hash = 7; hash = 67 * hash + Objects.hashCode(this.id); hash = 67 * hash + Objects.hashCode(this.version); hash = 67 * hash + Objects.hashCode(this.folio); return hash;//from w w w . jav a 2 s . c o m }
From source file:mx.edu.um.mateo.inventario.model.XFacturaAlmacen.java
@Override public int hashCode() { int hash = 7; hash = 71 * hash + Objects.hashCode(this.id); hash = 71 * hash + Objects.hashCode(this.version); hash = 71 * hash + Objects.hashCode(this.folio); hash = 71 * hash + Objects.hashCode(this.facturaAlmacenId); return hash;/* w ww .j a va 2 s . co m*/ }
From source file:nl.esciencecenter.octopus.webservice.mac.MacScheme.java
@Override public int hashCode() { return Objects.hashCode(date); }
From source file:libepg.epg.section.body.eventinformationtable.EventInformationTableRepeatingPart.java
@Override public int hashCode() { int hash = 5; hash = 23 * hash + Objects.hashCode(this.data); return hash; }
From source file:mx.edu.um.mateo.inventario.model.XEntrada.java
@Override public int hashCode() { int hash = 7; hash = 23 * hash + Objects.hashCode(this.getId()); hash = 23 * hash + Objects.hashCode(this.getFolio()); return hash;// w w w. ja v a 2s .c o m }
From source file:unikl.disco.calculator.gui.NetworkVisualizationPanel.java
@Override public int hashCode() { int hash = 3; hash = 79 * hash + this.id; hash = 79 * hash + Objects.hashCode(this.alias); return hash;//from w ww . ja v a 2 s . c o m }
From source file:io.druid.query.aggregation.variance.VarianceAggregatorFactory.java
@Override public int hashCode() { int result = fieldName.hashCode(); result = 31 * result + Objects.hashCode(name); result = 31 * result + Objects.hashCode(isVariancePop); result = 31 * result + Objects.hashCode(inputType); return result; }