Here you can find the source of hashLong(long id)
public static int hashLong(long id)
//package com.java2s; public class Main { public static int hashLong(long id) { return (int) (id ^ id >>> 32); }/*from w ww. j a v a 2 s. c o m*/ }