NullableColumnWithTransform

A class that handles the transformation between a source column type and a target type, but also supports transformations involving null values.

NullableColumnWithTransform extends ColumnType and can be used to define columns that can transform null to non-null values and vice versa.

Parameters

Wrapped

The type to which the column value of type Unwrapped is transformed

Unwrapped

The type of the column

delegate

The original column's IColumnType

transformer

Instance of ColumnTransformer that makes actual data transformation

Constructors

Link copied to clipboard
constructor(delegate: IColumnType<Unwrapped & Any>, transformer: ColumnTransformer<Unwrapped, Wrapped>)

Properties

Link copied to clipboard
Link copied to clipboard

Returns true if this is an auto-increment column, false otherwise.

Link copied to clipboard
open override var nullable: Boolean

Returns true if the column type is nullable, false otherwise.

Link copied to clipboard

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard

Returns the String representation of the specified non-null value when value is set as the default for the column.

Link copied to clipboard

Returns the SQL representation of the specified non-null value, for this column type.

Link copied to clipboard
open override fun notNullValueToDB(value: Wrapped & Any): Any

Returns an object compatible with the database, from the specified non-null value, for this column type.

Link copied to clipboard
open fun parameterMarker(value: Wrapped?): String

Defines the appearance of parameter markers in prepared SQL statements.

Link copied to clipboard
open fun readObject(rs: ResultSet, index: Int): Any?

Returns the object at the specified index in the rs.

Link copied to clipboard
open override fun setParameter(stmt: PreparedStatementApi, index: Int, value: Any?)

Sets the value at the specified index into the stmt.

Link copied to clipboard
open override fun sqlType(): String

Returns the SQL type of this column.

Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
fun unwrapRecursive(value: Wrapped?): Any?
Link copied to clipboard

Function checks that provided value is suites the column type and throws IllegalArgumentException otherwise. value can be of any type (including Expression)

Link copied to clipboard

Returns the String representation of the specified value when value is set as the default for the column. If the value is null and the column is not nullable, an exception will be thrown. Used for metadata default value comparison.

Link copied to clipboard
open override fun valueFromDB(value: Any): Wrapped?

Converts the specified value (from the database) to an object of the appropriated type, for this column type. Default implementation returns the same instance.

Link copied to clipboard
open override fun valueToDB(value: Wrapped?): Any?

Returns an object compatible with the database, from the specified value, for this column type.

Link copied to clipboard
open override fun valueToString(value: Wrapped?): String

Returns the SQL representation of the specified value, for this column type. If the value is null and the column is not nullable, an exception will be thrown. Used when generating an SQL statement and when logging that statement.