Modifier and Type | Class and Description |
---|---|
class |
DateArrayType
Maps an
Date[] array on a PostgreSQL date[] ARRAY type. |
class |
EnumArrayType
Maps an
Enum[] array on a database ARRAY type. |
class |
IntArrayType
Maps an
int[] array on a PostgreSQL ARRAY type. |
class |
ListArrayType
Maps an
List entity attribute on a PostgreSQL ARRAY column type. |
class |
LongArrayType
Maps an
long[] array on a PostgreSQL ARRAY type. |
class |
StringArrayType
Maps an
String[] array on a PostgreSQL ARRAY type. |
class |
TimestampArrayType
Maps an
Date[] array on a PostgreSQL timestamp[] ARRAY type. |
class |
UUIDArrayType
Maps an
UUID[] array on a PostgreSQL ARRAY type. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractArrayType<T>
Base class for all ARRAY types.
|
Modifier and Type | Class and Description |
---|---|
class |
YearMonthDateType
Maps a Java
YearMonth object to a DATE column type. |
class |
YearMonthEpochType
Maps a Java
YearMonth object to an small and continuous INT column type
which defines the months that passed since the Unix epoch. |
class |
YearMonthIntegerType
Maps a Java
YearMonth object to an INT column type. |
class |
YearMonthTimestampType
Maps a Java
YearMonth object to a TIMESTAMP column type. |
class |
YearType
Maps a Java
Year object to an INT column type. |
class |
ZoneIdType
Maps a Java
ZoneId object to an VARCHAR column type. |
Modifier and Type | Class and Description |
---|---|
class |
JsonBinaryType
Maps any given Java object on a JSON column type that is managed via
PreparedStatement.setObject(int, Object) at JDBC Driver level. |
class |
JsonBlobType
Maps any given Java object on a JSON column type that is managed via
PreparedStatement.setBlob(int, Blob) at JDBC Driver level. |
class |
JsonNodeBinaryType
Maps a Jackson
JsonNode object on a JSON column type that is managed via PreparedStatement.setObject(int, Object) at JDBC Driver level. |
class |
JsonNodeStringType
Maps a Jackson
JsonNode object on a JSON column type that is managed via PreparedStatement.setString(int, String) at JDBC Driver level. |
class |
JsonStringType
Maps any given Java object on a JSON column type that is managed via
PreparedStatement.setString(int, String) at JDBC Driver level. |
Copyright © 2020. All rights reserved.