List of usage examples for java.util Arrays hashCode
public static int hashCode(Object a[])
From source file:org.kaaproject.kaa.common.hash.EndpointObjectHash.java
@Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + Arrays.hashCode(data); return result; }
From source file:edu.oregonstate.eecs.mcplan.SequencePolicy.java
@Override public int hashCode() { final HashCodeBuilder hb = new HashCodeBuilder(); hb.append(getClass()).append(policies).append(Arrays.hashCode(switch_times)); return hb.toHashCode(); }
From source file:com.opengamma.analytics.financial.model.finitedifference.PDEFullResults1D.java
@Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + Arrays.hashCode(_f); result = prime * result + ((_grid == null) ? 0 : _grid.hashCode()); return result; }
From source file:vnet.sms.common.messages.UserData.java
@Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + Arrays.hashCode(this.data_); result = prime * result + ((this.dcs_ == null) ? 0 : this.dcs_.hashCode()); result = prime * result + this.length_; return result; }
From source file:com.splicemachine.pipeline.constraint.ConstraintContext.java
@Override public int hashCode() { return Arrays.hashCode(messageArgs); }
From source file:com.facebook.presto.accumulo.model.Row.java
@Override public int hashCode() { return Arrays.hashCode(fields.toArray()); }
From source file:graph.core.OntologyFunction.java
@Override public int hashCode() { final int prime = 31; int result = prime + Arrays.hashCode(nodes_); return result; }
From source file:org.kmnet.com.fw.common.message.ResultMessage.java
/** * returns the hash code/*from w ww.j a v a 2s. c om*/ * @see java.lang.Object#hashCode() */ @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + Arrays.hashCode(args); result = prime * result + ((code == null) ? 0 : code.hashCode()); result = prime * result + ((text == null) ? 0 : text.hashCode()); return result; }
From source file:com.opengamma.analytics.math.regression.LeastSquaresRegressionResult.java
@Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + Arrays.hashCode(_betas); result = prime * result + (_hasIntercept ? 1231 : 1237); long temp;//from w ww .jav a 2 s. c o m temp = Double.doubleToLongBits(_meanSquareError); result = prime * result + (int) (temp ^ (temp >>> 32)); result = prime * result + Arrays.hashCode(_pValues); temp = Double.doubleToLongBits(_rSquared); result = prime * result + (int) (temp ^ (temp >>> 32)); temp = Double.doubleToLongBits(_rSquaredAdjusted); result = prime * result + (int) (temp ^ (temp >>> 32)); result = prime * result + Arrays.hashCode(_residuals); result = prime * result + Arrays.hashCode(_standardErrorOfBeta); result = prime * result + Arrays.hashCode(_tStats); return result; }
From source file:org.opensaml.saml.common.binding.artifact.AbstractSAMLArtifact.java
/** {@inheritDoc} */ public int hashCode() { return Arrays.hashCode(getArtifactBytes()); }