Uses of Interface
org.jooq.Converter

Packages that use Converter
org.jooq   
org.jooq.impl   
org.jooq.tools   
 

Uses of Converter in org.jooq
 

Methods in org.jooq with parameters of type Converter
<U> DataType<U>
DataType.asConvertedDataType(Converter<? super T,U> converter)
          Retrieve the data type for a given converter
<T,U> List<U>
ResultQuery.fetch(Field<T> field, Converter<? super T,U> converter)
          Execute the query and return all values for a field from the generated result.
<U> List<U>
ResultQuery.fetch(int fieldIndex, Converter<?,U> converter)
          Execute the query and return all values for a field index from the generated result.
<U> List<U>
ResultQuery.fetch(String fieldName, Converter<?,U> converter)
          Execute the query and return all values for a field name from the generated result.
<T,U> U[]
ResultQuery.fetchArray(Field<T> field, Converter<? super T,U> converter)
          Execute the query and return all values for a field from the generated result.
<U> U[]
ResultQuery.fetchArray(int fieldIndex, Converter<?,U> converter)
          Execute the query and return all values for a field index from the generated result.
<U> U[]
ResultQuery.fetchArray(String fieldName, Converter<?,U> converter)
          Execute the query and return all values for a field name from the generated result.
<T,U> U
ResultQuery.fetchOne(Field<T> field, Converter<? super T,U> converter)
          Execute the query and return return at most one resulting value for a field from the generated result.
<U> U
ResultQuery.fetchOne(int fieldIndex, Converter<?,U> converter)
          Execute the query and return return at most one resulting value for a field index from the generated result.
<U> U
ResultQuery.fetchOne(String fieldName, Converter<?,U> converter)
          Execute the query and return return at most one resulting value for a field name from the generated result.
<T,U> U
Record.getValue(Field<T> field, Converter<? super T,U> converter)
          Get a converted value from this Record, providing a field.
<T,U> U
Record.getValue(Field<T> field, Converter<? super T,U> converter, U defaultValue)
          Get a converted value from this record, providing a field.
<U> U
Record.getValue(int index, Converter<?,U> converter)
          Get a converted value from this Store, providing a field index.
<U> U
Record.getValue(int index, Converter<?,U> converter, U defaultValue)
          Get a converted value from this Store, providing a field index.
<U> U
Record.getValue(String fieldName, Converter<?,U> converter)
          Get a converted value from this Record, providing a field name.
<U> U
Record.getValue(String fieldName, Converter<?,U> converter, U defaultValue)
          Get a converted value from this record, providing a field name.
<T,U> List<U>
Result.getValues(Field<T> field, Converter<? super T,U> converter)
          Convenience method to fetch all values for a given field.
<U> List<U>
Result.getValues(int fieldIndex, Converter<?,U> converter)
          Convenience method to fetch all values for a given field.
<U> List<U>
Result.getValues(String fieldName, Converter<?,U> converter)
          Convenience method to fetch all values for a given field.
<T,U> void
Record.setValue(Field<T> field, U value, Converter<T,? super U> converter)
          Set a value into this record.
 

Uses of Converter in org.jooq.impl
 

Classes in org.jooq.impl that implement Converter
 class EnumConverter<T,U extends Enum<U>>
          A base class for enum conversion.
 

Methods in org.jooq.impl with parameters of type Converter
<U> DataType<U>
AbstractDataType.asConvertedDataType(Converter<? super T,U> converter)
           
 

Uses of Converter in org.jooq.tools
 

Methods in org.jooq.tools with parameters of type Converter
static
<U> List<U>
Convert.convert(List<?> list, Converter<?,U> converter)
          Convert a list of objects to a list of T, using Convert.convert(Object, Converter)
static
<U> U
Convert.convert(Object from, Converter<?,U> converter)
          Convert an object to a type.
static
<U> U[]
Convert.convertArray(Object[] from, Converter<?,U> converter)
          Convert an array into another one using a converter This uses Convert.convertArray(Object[], Class) to convert the array to an array of fromType() first, before converting that array again to toType()
 



Copyright © 2012. All Rights Reserved.