MCPcopy Create free account
hub / github.com/OpenTSDB/asynchbase / hashCode

Method hashCode

src/KeyValue.java:191–199  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

189 }
190
191 public int hashCode() {
192 return Arrays.hashCode(key)
193 ^ Arrays.hashCode(family)
194 ^ Arrays.hashCode(qualifier)
195 ^ Arrays.hashCode(value)
196 ^ (int) (timestamp ^ (timestamp >>> 32))
197 //^ type
198 ;
199 }
200
201 public String toString() {
202 final StringBuilder buf = new StringBuilder(84 // Boilerplate + timestamp

Callers 3

metaRegionInfoMethod · 0.45
toStringMethod · 0.45
ShutdownThreadMethod · 0.45

Calls

no outgoing calls

Tested by 1

metaRegionInfoMethod · 0.36