Uses of Interface
org.jooq.FieldProvider

Packages that use FieldProvider
org.jooq   
org.jooq.impl   
 

Uses of FieldProvider in org.jooq
 

Subinterfaces of FieldProvider in org.jooq
 interface Cursor<R extends Record>
          Cursors allow for lazy, sequential access to an underlying JDBC ResultSet.
 interface Record
          A wrapper for database result records returned by SelectQuery
 interface Result<R extends Record>
          A wrapper for database results returned by SelectQuery
 interface Select<R extends Record>
          A Query that can provide a Result after execution
 interface SelectConditionStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectConnectByConditionStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectConnectByStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectFinalStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectForUpdateOfStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectForUpdateStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectForUpdateWaitStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectFromStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectGroupByStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectHavingConditionStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectHavingStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectJoinStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectLimitStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectOffsetStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectOnConditionStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectOrderByStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectQuery
          A query for data selection
 interface SelectSelectStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectStartWithStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectWhereStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SimpleSelectConditionStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectFinalStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectForUpdateOfStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectForUpdateStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectForUpdateWaitStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectLimitStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectOffsetStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectOrderByStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectQuery<R extends Record>
          A simple select query that provides Records from a single table, with no joins allowed.
 interface SimpleSelectWhereStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface Table<R extends Record>
          A table to be used in queries
 interface TableOnConditionStep
          An intermediate (optional) type for the construction of a JOIN clause, where the join criteria is added using an ON clause (with a Condition.
 interface TableRecord<R extends TableRecord<R>>
          A record originating from a single table
 interface Type<R extends Record>
          A type (udt or table) that represents any database row
 interface UDT<R extends UDTRecord<R>>
          UDT definition
 interface UDTRecord<R extends UDTRecord<R>>
          An object holding data of a UDT
 interface UpdatableRecord<R extends UpdatableRecord<R>>
          A common interface for records that can be stored back to the database again.
 interface UpdatableTable<R extends Record>
          A common interface for tables whose records can be stored back to the database again.
 

Uses of FieldProvider in org.jooq.impl
 

Classes in org.jooq.impl that implement FieldProvider
 class CustomRecord<R extends TableRecord<R>>
          A base class for custom TableRecord implementations in client code.
 class CustomTable<R extends TableRecord<R>>
          A base class for custom Table implementations in client code.
 class TableImpl<R extends Record>
          A common base type for tables This type is for JOOQ INTERNAL USE only.
 class TableRecordImpl<R extends TableRecord<R>>
          A record implementation for a record originating from a single table This type is for JOOQ INTERNAL USE only.
 class UDTImpl<R extends UDTRecord<R>>
          A common base type for UDT's This type is for JOOQ INTERNAL USE only.
 class UDTRecordImpl<R extends UDTRecord<R>>
          A record implementation for a record originating from a single UDT This type is for JOOQ INTERNAL USE only.
 class UpdatableRecordImpl<R extends UpdatableRecord<R>>
          A record implementation for a record holding a primary key This type is for JOOQ INTERNAL USE only.
 class UpdatableTableImpl<R extends Record>
          A table implementation for a table holding a primary key This type is for JOOQ INTERNAL USE only.
 



Copyright © 2012. All Rights Reserved.