List of usage examples for java.util Arrays hashCode
public static int hashCode(Object a[])
From source file:io.cloudslang.orchestrator.entities.ExecutionState.java
@Override public int hashCode() { int result = executionId != null ? executionId.hashCode() : 0; result = 31 * result + (branchId != null ? branchId.hashCode() : 0); result = 31 * result + (status != null ? status.hashCode() : 0); result = 31 * result + (executionObject != null ? Arrays.hashCode(executionObject) : 0); return result; }
From source file:org.bpmscript.correlation.CorrelationSupportTest.java
public String getHashHashCode(byte[] bytes) { return String.valueOf(Arrays.hashCode(bytes)); }
From source file:com.opengamma.analytics.financial.model.volatility.smile.function.HestonModelData.java
@Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + Arrays.hashCode(_parameters); return result; }
From source file:org.waveprotocol.wave.examples.fedone.common.HashedVersion.java
@Override public int hashCode() { int result = 17; result = 31 * result + Long.valueOf(version).hashCode(); result = 31 * result + Arrays.hashCode(historyHash); return result; }
From source file:com.intel.podm.common.types.net.MacAddress.java
@Override public int hashCode() { return Arrays.hashCode(macAddressBytes); }
From source file:net.sf.jclal.util.random.Ranmt.java
@Override public int hashCode() { int hash = 5; hash = 41 * hash + this.mti; hash = 41 * hash + Arrays.hashCode(this.mt); return hash;/*from ww w.j a va2s. co m*/ }
From source file:org.gradle.api.file.RelativePath.java
@Override public int hashCode() { int result = endsWithFile ? 1 : 0; result = 31 * result + Arrays.hashCode(segments); return result; }
From source file:twitter4j.ControlStreamInfo.java
@Override public int hashCode() { int result = users != null ? Arrays.hashCode(users) : 0; result = 31 * result + (includeFollowingsActivity ? 1 : 0); result = 31 * result + (includeUserChanges ? 1 : 0); result = 31 * result + (replies != null ? replies.hashCode() : 0); result = 31 * result + (with != null ? with.hashCode() : 0); return result; }
From source file:org.apache.eagle.query.aggregate.raw.GroupbyKey.java
@Override public int hashCode() { ListIterator<BytesWritable> e1 = this.value.listIterator(); int hash = 0xFFFFFFFF; while (e1.hasNext()) { hash ^= Arrays.hashCode(e1.next().getBytes()); }//from ww w.j a v a 2 s .com return hash; }
From source file:squash.booking.lambdas.core.BookingRule.java
@Override public int hashCode() { return Objects.hash(this.booking, this.isRecurring, Arrays.hashCode(this.datesToExclude)); }