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 FOREIGN KEY [public.t_book.author_id] REFERENCES t_author [public.t_author.id]
static org.jooq.TableField<TBookRecord,Integer> TBook.CO_AUTHOR_ID
          An uncommented item FOREIGN KEY [public.t_book.co_author_id] REFERENCES t_author [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 FOREIGN KEY [public.t_book.details_id] REFERENCES t_book_details [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 FOREIGN KEY [public.t_book.language_id] REFERENCES t_language [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 FOREIGN KEY [public.t_book_to_book_store.book_id] REFERENCES t_book [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.