Uses of Class
org.jooq.util.maven.example.postgres.tables.records.TBookRecord

Packages that use TBookRecord
org.jooq.util.maven.example.postgres   
org.jooq.util.maven.example.postgres.tables   
org.jooq.util.maven.example.postgres.tables.records   
 

Uses of TBookRecord in org.jooq.util.maven.example.postgres
 

Fields in org.jooq.util.maven.example.postgres with type parameters of type TBookRecord
static org.jooq.UniqueKey<TBookRecord> Keys.PK_T_BOOK
           
static org.jooq.ForeignKey<TBookRecord,TAuthorRecord> Keys.T_BOOK__FK_T_BOOK_AUTHOR_ID
           
static org.jooq.ForeignKey<TBookRecord,TAuthorRecord> Keys.T_BOOK__FK_T_BOOK_CO_AUTHOR_ID
           
static org.jooq.ForeignKey<TBookRecord,TBookDetailsRecord> Keys.T_BOOK__FK_T_BOOK_DETAILS_ID
           
static org.jooq.ForeignKey<TBookRecord,TLanguageRecord> Keys.T_BOOK__FK_T_BOOK_LANGUAGE_ID
           
static org.jooq.ForeignKey<TBookToBookStoreRecord,TBookRecord> Keys.T_BOOK_TO_BOOK_STORE__FK_B2BS_B_ID
           
 

Uses of TBookRecord in org.jooq.util.maven.example.postgres.tables
 

Fields in org.jooq.util.maven.example.postgres.tables with type parameters of type TBookRecord
static org.jooq.TableField<TBookRecord,Integer> TBook.AUTHOR_ID
          An uncommented item CONSTRAINT t_book__fk_t_book_author_id FOREIGN KEY (author_id) REFERENCES public.t_author (id)
static org.jooq.TableField<TBookRecord,Integer> TBook.CO_AUTHOR_ID
          An uncommented item CONSTRAINT t_book__fk_t_book_co_author_id FOREIGN KEY (co_author_id) REFERENCES public.t_author (id)
static org.jooq.TableField<TBookRecord,byte[]> TBook.CONTENT_PDF
          An uncommented item
static org.jooq.TableField<TBookRecord,String> TBook.CONTENT_TEXT
          An uncommented item
static org.jooq.TableField<TBookRecord,Integer> TBook.DETAILS_ID
          An uncommented item CONSTRAINT t_book__fk_t_book_details_id FOREIGN KEY (details_id) REFERENCES public.t_book_details (id)
static org.jooq.TableField<TBookRecord,Integer> TBook.ID
          An uncommented item PRIMARY KEY
static org.jooq.TableField<TBookRecord,Integer> TBook.LANGUAGE_ID
          An uncommented item CONSTRAINT t_book__fk_t_book_language_id FOREIGN KEY (language_id) REFERENCES public.t_language (id)
static org.jooq.TableField<TBookRecord,Integer> TBook.PUBLISHED_IN
          An uncommented item
static org.jooq.TableField<TBookRecord,UBookStatus> TBook.STATUS
          An uncommented item
static org.jooq.TableField<TBookRecord,String> TBook.TITLE
          An uncommented item
 

Methods in org.jooq.util.maven.example.postgres.tables that return types with arguments of type TBookRecord
 List<org.jooq.UniqueKey<TBookRecord>> TBook.getKeys()
           
 org.jooq.UniqueKey<TBookRecord> TBook.getMainKey()
           
 Class<TBookRecord> TBook.getRecordType()
          The class holding records for this type
 List<org.jooq.ForeignKey<TBookRecord,?>> TBook.getReferences()
           
 

Uses of TBookRecord in org.jooq.util.maven.example.postgres.tables.records
 

Methods in org.jooq.util.maven.example.postgres.tables.records that return TBookRecord
 TBookRecord TBookToBookStoreRecord.fetchTBook()
          An uncommented item PRIMARY KEY CONSTRAINT t_book_to_book_store__fk_b2bs_b_id FOREIGN KEY (book_id) REFERENCES public.t_book (id)
 

Methods in org.jooq.util.maven.example.postgres.tables.records that return types with arguments of type TBookRecord
 List<TBookRecord> TLanguageRecord.fetchTBookList()
          An uncommented item PRIMARY KEY
 List<TBookRecord> TBookDetailsRecord.fetchTBookList()
          An uncommented item PRIMARY KEY
 List<TBookRecord> TAuthorRecord.fetchTBookListByAuthorId()
          An uncommented item PRIMARY KEY
 List<TBookRecord> TAuthorRecord.fetchTBookListByCoAuthorId()
          An uncommented item PRIMARY KEY
 



Copyright © 2012. All Rights Reserved.