- 
- Type Parameters:
- R- The- KEY's owner table record
 - All Superinterfaces:
- Key<R>,- Named,- QueryPart,- Serializable
 
 public interface UniqueKey<R extends Record> extends Key<R> AUniqueKeyis an object representing aUNIQUE KEYor aPRIMARY KEY. It can be referenced by aForeignKey.Instances of this type cannot be created directly. They are available from generated code. - Author:
- Lukas Eder
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull List<ForeignKey<?,R>>getReferences()A list of allForeignKeys, referencing thisUniqueKeybooleanisPrimary()Whether this is the table's primary key.- 
Methods inherited from interface org.jooq.Keyconstraint, enforced, getFields, getFieldsArray, getTable, nullable
 - 
Methods inherited from interface org.jooq.NamedgetComment, getCommentPart, getName, getQualifiedName, getUnqualifiedName
 
- 
 
- 
- 
- 
Method Detail- 
getReferences@NotNull @NotNull List<ForeignKey<?,R>> getReferences() A list of allForeignKeys, referencing thisUniqueKey
 - 
isPrimaryboolean isPrimary() Whether this is the table's primary key.
 
- 
 
-