List of usage examples for java.util Objects hashCode
public static int hashCode(Object o)
From source file:com.azaptree.services.command.impl.CommandCatalogImpl.java
@Override public int hashCode() { return Objects.hashCode(name); }
From source file:com.medlog.webservice.vo.pairs.ToneKeyValuePair.java
@Override public int hashCode() { int hash = 5; hash = 89 * hash + (int) (Double.doubleToLongBits(this.getValue()) ^ (Double.doubleToLongBits(this.getValue()) >>> 32)); hash = 89 * hash + (int) (Double.doubleToLongBits(this.getWeightedValue()) ^ (Double.doubleToLongBits(this.getWeightedValue()) >>> 32)); hash = 89 * hash + Objects.hashCode(this.getKey()); return hash;// w w w .j a va 2s. c o m }
From source file:pt.ist.fenixedu.delegates.ui.DelegateBean.java
@Override public int hashCode() { return Objects.hashCode(curricularYear) + Objects.hashCode(cycleType) + Objects.hashCode(degree); }
From source file:umich.ms.batmass.gui.viewers.map2d.components.Map2DPanelOptions.java
@Override public int hashCode() { int hash = 5; hash = 79 * hash + Objects.hashCode(this.msLevel); hash = 79 * hash + Objects.hashCode(this.mzRange); hash = 79 * hash + Objects.hashCode(this.doDenoise); hash = 79 * hash//w w w. java 2 s . co m + (int) (Double.doubleToLongBits(this.cutoff) ^ (Double.doubleToLongBits(this.cutoff) >>> 32)); hash = 79 * hash + Objects.hashCode(this.ms2Overlay); return hash; }
From source file:org.jfree.data.xyz.XYZSeries.java
@Override public int hashCode() { int hash = 7; hash = 41 * hash + Objects.hashCode(this.key); return hash; }
From source file:com.github.lynxdb.server.core.User.java
@Override public int hashCode() { int hash = 7; hash = 11 * hash + Objects.hashCode(this.userLogin); return hash; }
From source file:org.jboss.loom.actions.FileAbstractAction.java
@Override public int hashCode() { int hash = 7; hash = 67 * hash + Objects.hashCode(this.src); hash = 67 * hash + Objects.hashCode(this.dest); return hash;/* w w w . j a v a2 s .c o m*/ }
From source file:br.com.esign.logistics.core.Route.java
@Override public int hashCode() { int hash = 3; hash = 17 * hash + Objects.hashCode(this.name); return hash; }
From source file:pt.scanner.server.data.Contour.java
@Override public int hashCode() { int hash = 7; hash = 37 * hash + Objects.hashCode(this.index); return hash; }
From source file:org.geosdi.geoplatform.experimental.connector.api.auth.token.BaseTokenBuilder.java
@Override public int hashCode() { int hash = 5; hash = 41 * hash + Objects.hashCode(this.auth); return hash; }