Here you can find the source of isBoolean(int dataType)
public static boolean isBoolean(int dataType)
//package com.java2s; //License from project: Apache License import java.sql.Types; public class Main { public static boolean isBoolean(int dataType) { return dataType == Types.BOOLEAN; }/*from www . j a va 2s .c o m*/ }