Here you can find the source of booleanToShort(boolean b)
public static short booleanToShort(boolean b)
//package com.java2s; //License from project: LGPL public class Main { public static short booleanToShort(boolean b) { return b ? (short) 1 : 0; }//from ww w. j a va2s . c o m }