-
- Type Parameters:
R
- TheIDENTITY
's owner table recordT
- TheIDENTITY
's field type
- All Superinterfaces:
Serializable
public interface Identity<R extends Record,T> extends Serializable
AnIdentity
is an object representing anIDENTITY
column as understood by the SQL:2003 standard. In most RDBMS, this is actually called anIDENTITY
column. Some RDMBS such as MySQL call itAUTO_INCREMENT
columns.Instances of this type cannot be created directly. They are available from generated code.
- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull TableField<R,T>
getField()
TheIDENTITY
column.@NotNull Table<R>
getTable()
TheIDENTITY
's owner table
-
-
-
Method Detail
-
getField
@NotNull @NotNull TableField<R,T> getField()
TheIDENTITY
column.
-
-