Here you can find the source of longToCompare(Long value)
public static long longToCompare(Long value)
//package com.java2s; //License from project: Apache License public class Main { public static long longToCompare(Long value) { return value == null ? -1 : value; }//from w w w . j av a 2s .com }