Returns {code true} if the specified primary key represents a default value, false otherwise.
This method is used to check if the primary key of the entity is a default value. This is useful when
determining if the entity is new or has been persisted before.
Parameters:
pk - primary key to check.
Returns:
{code true} if the specified primary key represents a default value, false otherwise.
Since:
1.2
getValue
ObjectgetValue(@Nonnull
Column column,
@Nonnull
E record)
Extracts the value for the specified column from the given record.
Parameters:
column - the column to extract the value for.
record - the record to extract the value from.
Returns:
the value for the specified column from the given record.