Uses of Interface
org.jooq.UDT

Packages that use UDT
org.jooq   
org.jooq.impl   
 

Uses of UDT in org.jooq
 

Methods in org.jooq that return UDT
 UDT<R> UDTRecord.getUDT()
          The UDT from which this record was read
 UDT<R> UDTField.getUDT()
           
 UDT<?> Schema.getUDT(String name)
          Get a UDT by its name (case-sensitive) in this schema, or null if no such UDT exists
 

Methods in org.jooq that return types with arguments of type UDT
 List<UDT<?>> Schema.getUDTs()
          List all UDTs contained in this schema
 

Methods in org.jooq with parameters of type UDT
<R extends UDTRecord<R>>
R
FactoryOperations.newRecord(UDT<R> type)
          Create a new attached UDTRecord.
 

Uses of UDT in org.jooq.impl
 

Classes in org.jooq.impl that implement UDT
 class UDTImpl<R extends UDTRecord<R>>
          A common base type for UDT's This type is for JOOQ INTERNAL USE only.
 

Methods in org.jooq.impl that return UDT
 UDT<R> UDTRecordImpl.getUDT()
           
 UDT<?> SchemaImpl.getUDT(String name)
           
 

Methods in org.jooq.impl that return types with arguments of type UDT
 List<UDT<?>> SchemaImpl.getUDTs()
          List all UDTs contained in this schema
 

Methods in org.jooq.impl with parameters of type UDT
protected static
<R extends UDTRecord<R>,T>
UDTField<R,T>
UDTImpl.createField(String name, DataType<T> type, UDT<R> udt)
          Subclasses may call this method to create UDTField objects that are linked to this table.
<R extends UDTRecord<R>>
R
Factory.newRecord(UDT<R> type)
          Create a new attached UDTRecord.
 

Constructors in org.jooq.impl with parameters of type UDT
UDTRecordImpl(UDT<R> udt)
           
 



Copyright © 2012. All Rights Reserved.