public static boolean isValidSQLDatatype(int datatype) {
   return equivalentTypes.keySet().contains(SQLType.toSQLType(datatype));
 }
 public static XSDType getEquivalentType(int sqlType) {
   return equivalentTypes.get(SQLType.toSQLType(sqlType));
 }