String string = stmt.getString(index);
return (T) (string == null ? null : new UShort(string));
}
else if (type == UInteger.class) {
String string = stmt.getString(index);
return (T) (string == null ? null : new UInteger(string));
}
else if (type == ULong.class) {
String string = stmt.getString(index);
return (T) (string == null ? null : new ULong(string));
}