Package | Description |
---|---|
com.querydsl.sql |
SQL/JDBC support
|
com.querydsl.sql.types |
Types for de/serialization to ResultSet and PreparedStatement
|
Modifier and Type | Method and Description |
---|---|
List<Type<?>> |
SQLTemplates.getCustomTypes() |
Modifier and Type | Method and Description |
---|---|
protected void |
SQLTemplates.addCustomType(Type<?> type) |
void |
Configuration.register(String table,
String column,
Type<?> type)
Register the given
Type converter for the given table and column |
void |
Configuration.register(Type<?> type)
Register the given
Type converter |
Modifier and Type | Class and Description |
---|---|
class |
AbstractDateTimeType<T>
Common abstract superclass for Type implementations
|
class |
AbstractJSR310DateTimeType<T extends java.time.temporal.Temporal>
Common abstract superclass for Type implementations for Java Time API (JSR310)
|
class |
AbstractType<T>
Common abstract superclass for Type implementations
|
class |
ArrayType<T>
ArrayType maps Java arrays to JDBC arrays |
class |
BigDecimalAsDoubleType
BigDecimalAsDoubleType maps BigDecimal to Double on the JDBC level |
class |
BigDecimalType
BigDecimalType maps BigDecimal to BigDecimal on the JDBC level |
class |
BigIntegerAsLongType
BigIntegerType maps BigInteger to Long on the JDBC level |
class |
BigIntegerType
BigIntegerType maps BigInteger to BigDecimal on the JDBC level |
class |
BlobType
BlobType maps Blob to Blob on the JDBC level |
class |
BooleanType
BooleanType maps Boolean to Boolean on the JDBC level |
class |
BytesType
BytesType maps byte[] to byte[] on the JDBC level |
class |
ByteType
ByteType maps Byte to Byte on the JDBC level |
class |
CalendarType
CalendarType maps Calendar to Timestamp on the JDBC level |
class |
CharacterType
CharacterType maps Character to Character on the JDBC level |
class |
ClobType
ClobType maps Clob to Clob on the JDBC level |
class |
CurrencyType
CurrencyType maps Currency to String on the JDBC level |
class |
DateTimeType
DateTimeType maps DateTime to Timestamp on the JDBC level |
class |
DateType
DateType maps Date to Date on the JDBC level |
class |
DoubleType
DoubleType maps Double to Double on the JDBC level |
class |
EnumAsObjectType<T extends Enum<T>>
EnumAsObjectType maps Enum types to Object on the JDBC level |
class |
EnumByNameType<T extends Enum<T>>
EnumByNameType maps Enum types to their String names on the JDBC level |
class |
EnumByOrdinalType<T extends Enum<T>>
EnumByOrdinalType maps Enum types to their Integer ordinals on the JDBC level |
class |
FloatType
FloatType maps Float to Float on the JDBC level |
class |
InputStreamType
InputStreamType maps InputStream to InputStream on the JDBC level |
class |
IntegerType
IntegerType maps Integer to Integer on the JDBC level |
class |
JSR310InstantType
JSR310InstantType maps Instant to
Timestamp on the JDBC level
|
class |
JSR310LocalDateTimeType
JSR310LocalDateTimeType maps LocalDateTime
to Timestamp on the JDBC level
|
class |
JSR310LocalDateType
JSR310LocalDateType maps LocalDate
to Date on the JDBC level
|
class |
JSR310LocalTimeType
JSR310LocalTimeType maps LocalTime
to Time on the JDBC level
|
class |
JSR310OffsetDateTimeType
JSR310OffsetDateTimeType maps OffsetDateTime
to Timestamp on the JDBC level
|
class |
JSR310OffsetTimeType
JSR310OffsetTimeType maps OffsetTime
to Time on the JDBC level
|
class |
JSR310ZonedDateTimeType
JSR310ZonedDateTimeType maps ZonedDateTime
to Timestamp on the JDBC level
|
class |
LocalDateTimeType
LocalDateTimeType maps LocalDateTime to Timestamp on the JDBC level |
class |
LocalDateType
LocalDateType maps LocalDate to Date on the JDBC level |
class |
LocaleType
LocaleType maps Locale to String on the JDBC level |
class |
LocalTimeType
LocalTimeType maps LocalTime to Time on the JDBC level |
class |
LongType
LongType maps Long to Long on the JDBC level |
class |
LongVarBinaryBytesType
LongVarBinaryBytesType uses LONGVARBINARY as the JDBC type |
class |
NumericBooleanType
NumericBooleanType maps Boolean to 1/0 (Integer) on the JDBC level |
class |
ObjectType
ObjectType maps Object to Object on the JDBC level |
class |
ShortType
ShortType maps Short to Short on the JDBC level |
class |
SQLXMLType
SQLXMLType maps SQLXML to SQLXML on the JDBC level |
class |
StringAsObjectType
StringAsObjectType maps String to String on the JDBC level |
class |
StringType
StringType maps String to String on the JDBC level |
class |
TimestampType
TimestampType maps Timestamp to Timestamp on the JDBC level |
class |
TimeType
TimeType maps Time to Time on the JDBC level |
class |
TrueFalseType
TrueFalseType maps Boolean to 'T'/'F' on the JDBC level |
class |
URLType
URLType maps URL to URL on the JDBC level |
class |
UtilDateType
UtilDateType maps Date to Timestamp on the JDBC level |
class |
UtilUUIDType
UtilUUIDType maps UUID to String on the JDBC level |
class |
XMLAsStringType
XMLAsStringType maps String to SQLXML on the JDBC level |
class |
YesNoType
YesNoType maps Boolean to 'Y'/'N' on the JDBC level |
Copyright © 2007–2016 Querydsl. All rights reserved.