Uses of Interface
org.jooq.AliasProvider

Packages that use AliasProvider
org.jooq   
org.jooq.impl   
 

Uses of AliasProvider in org.jooq
 

Classes in org.jooq with type parameters of type AliasProvider
 interface AliasProvider<Z extends AliasProvider<Z>>
          A QueryPart that can create an aliased QueryPart of itself
 

Subinterfaces of AliasProvider in org.jooq
 interface AggregateFunction<T>
          An aggregate function is a special field that is usually used in a GROUP BY context.
 interface CaseConditionStep<T>
          The final step in creating a case statement of the type CASE WHEN x < 1 THEN 'one' WHEN x >= 2 THEN 'two' ELSE 'three' END
 interface CaseWhenStep<V,T>
          The final step in creating a case statement of the type CASE x WHEN 1 THEN 'one' WHEN 2 THEN 'two' ELSE 'three' END
 interface Field<T>
          A field used in tables and conditions
 interface GroupConcatOrderByStep
          MySQL's GROUP_CONCAT function.
 interface GroupConcatSeparatorStep
          MySQL's GROUP_CONCAT function.
 interface Param<T>
          A named parameter
 interface Table<R extends Record>
          A table to be used in queries
 interface TableField<R extends Record,T>
          A field contained in a table
 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 UDTField<R extends UDTRecord<R>,T>
          A field contained in a UDT
 interface UpdatableTable<R extends Record>
          A common interface for tables whose records can be stored back to the database again.
 interface WindowFinalStep<T>
          This type is used for the window function DSL API.
 interface WindowOrderByStep<T>
          This type is used for the window function DSL API.
 interface WindowPartitionByStep<T>
          This type is used for the window function DSL API.
 interface WindowRowsStep<T>
          This type is used for the window function DSL API.
 

Uses of AliasProvider in org.jooq.impl
 

Classes in org.jooq.impl that implement AliasProvider
 class CustomField<T>
          A base class for custom Field 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 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.