Cast this field to the type of another field. Casting converts expressions between data types directly in SQL using SQL CAST expressions or similar. If you want to convert data types only in jOOQ without any effect on generated SQL, you can use Field#coerce(Field) instead.
(Field<Z> field)
| 330 | * @see #cast(DataType) |
| 331 | */ |
| 332 | @NotNull |
| 333 | @Support |
| 334 | <Z> Field<Z> cast(Field<Z> field); |
| 335 |
no outgoing calls
no test coverage detected