Here you can find the source of boolToLong(boolean b)
public static long boolToLong(boolean b)
//package com.java2s; public class Main { public static long boolToLong(boolean b) { return b ? 1 : 0; }//from www . j a v a 2s .c o m }