Here you can find the source of isClobType(int sqlType)
public static boolean isClobType(int sqlType)
//package com.java2s; //License from project: Open Source License import java.sql.Types; public class Main { public static boolean isClobType(int sqlType) { if (sqlType == Types.CLOB || sqlType == Types.LONGVARCHAR || sqlType == Types.NCLOB || sqlType == Types.LONGNVARCHAR) { return true; } else {/* w ww . j a v a 2s.com*/ return false; } } }