List of usage examples for com.google.common.primitives Shorts hashCode
public static int hashCode(short value)
From source file:org.elasticsearch.index.fielddata.util.ShortArrayRef.java
@Override public int hashCode() { int result = 1; for (int i = start; i < end; i++) { result = 31 * result + Shorts.hashCode(values[i]); }//from w ww . j av a 2s . c o m return result; }