String string = stmt.getString(index);
return (T) (string == null ? null : new UByte(string));
}
else if (type == UShort.class) {
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));
}