Interface JdbcType

    • Method Detail

      • getFriendlyName

        default String getFriendlyName()
        A "friendly" name for use in logging
      • getDefaultSqlTypeCode

        default int getDefaultSqlTypeCode()
        A JDBC type code that identifies the SQL column type.

        This value might be different from getDdlTypeCode() if the actual type e.g. JSON is emulated through a type like CLOB.

        Returns:
        a JDBC type code
      • getDdlTypeCode

        default int getDdlTypeCode()
        A JDBC type code that identifies the SQL column type to be used for schema generation.

        This value is passed to DdlTypeRegistry.getTypeName(int, Size) to obtain the SQL column type.

        Returns:
        a JDBC type code
        Since:
        6.2
      • getJdbcLiteralFormatter

        default <T> JdbcLiteralFormatter<T> getJdbcLiteralFormatter​(JavaType<T> javaType)
        Obtain a formatter object capable of rendering values of the given Java type as SQL literals of the type represented by this object.
      • getBinder

        <X> ValueBinder<X> getBinder​(JavaType<X> javaType)
        Obtain a binder object capable of binding values of the given Java type to parameters of a JDBC PreparedStatement.
        Parameters:
        javaType - The descriptor describing the types of Java values to be bound
        Returns:
        The appropriate binder.
      • getExtractor

        <X> ValueExtractor<X> getExtractor​(JavaType<X> javaType)
        Obtain an extractor object capable of extracting values of the given Java type from a JDBC ResultSet.
        Parameters:
        javaType - The descriptor describing the types of Java values to be extracted
        Returns:
        The appropriate extractor
      • getPreferredJavaTypeClass

        default Class<?> getPreferredJavaTypeClass​(WrapperOptions options)
        The Java type class that is preferred by the binder or null.
      • getCheckCondition

        default String getCheckCondition​(String columnName,
                                         JavaType<?> javaType,
                                         Dialect dialect)
        The check constraint that should be added to the column definition in generated DDL.
        Parameters:
        columnName - the name of the column
        javaType - the JavaType of the mapped column
        dialect - the SQL Dialect
        Returns:
        a check constraint condition or null
        Since:
        6.2
      • isInteger

        default boolean isInteger()
      • isFloat

        default boolean isFloat()
      • isDecimal

        default boolean isDecimal()
      • isNumber

        default boolean isNumber()
      • isBinary

        default boolean isBinary()
      • isString

        default boolean isString()
      • isTemporal

        default boolean isTemporal()
      • isLob

        default boolean isLob()
      • isLob

        static boolean isLob​(int jdbcTypeCode)
      • isNationalized

        default boolean isNationalized()
      • isNationalized

        static boolean isNationalized​(int jdbcTypeCode)
      • isInterval

        default boolean isInterval()
      • getCastType

        default CastType getCastType()
      • getCastType

        static CastType getCastType​(int typeCode)