Uses of Class
org.jooq.exception.DataTypeException

Packages that use DataTypeException
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
This package contains jOOQ's public utilities.
  • Uses of DataTypeException in org.jooq

    Methods in org.jooq that throw DataTypeException
    Modifier and Type
    Method
    Description
    CloseableQuery.bind(int index, Object value)
     
    CloseableQuery.bind(String param, Object value)
     
    CloseableResultQuery.bind(int index, Object value)
     
    CloseableResultQuery.bind(String param, Object value)
     
    @NotNull Query
    Query.bind(int index, Object value)
    Bind a new value to an indexed parameter.
    @NotNull Query
    Query.bind(String param, Object value)
    Bind a new value to a named parameter.
    @NotNull ResultQuery<R>
    ResultQuery.bind(int index, Object value)
     
    @NotNull ResultQuery<R>
    ResultQuery.bind(String param, Object value)
     
    <U> U
    Record.get(int index, Class<? extends U> type)
    Get a converted value from this record, providing a field index.
    <U> U
    Record.get(int index, Converter<?,? extends U> converter)
    Get a converted value from this record, providing a field index.
    <U> U
    Record.get(String fieldName, Class<? extends U> type)
    Get a converted value from this Record, providing a field name, using Fields.field(String) for lookup.
    <U> U
    Record.get(String fieldName, Converter<?,? extends U> converter)
    Get a converted value from this Record, providing a field name, using Fields.field(String) for lookup.
    <U> U
    Record.get(Field<?> field, Class<? extends U> type)
    Get a converted value from this Record, providing a field, using Fields.field(Field) for lookup.
    <T, U> U
    Record.get(Field<T> field, Converter<? super T,? extends U> converter)
    Get a converted value from this Record, providing a field, using Fields.field(Field) for lookup.
    <U> U
    Record.get(Name fieldName, Class<? extends U> type)
    Get a converted value from this Record, providing a field name, using Fields.field(Name) for lookup.
    <U> U
    Record.get(Name fieldName, Converter<?,? extends U> converter)
    Get a converted value from this Record, providing a field name, using Fields.field(Name) for lookup.
    @NotNull DataType<T[]>
    DataType.getArrayDataType()
    Retrieve the data type for an ARRAY of this data type.
    <T> T
    Record.getValue(int index, Class<? extends T> type)
    Get a converted value from this record, providing a field index.
    <U> U
    Record.getValue(int index, Converter<?,? extends U> converter)
    Get a converted value from this record, providing a field index.
    <T> T
    Record.getValue(String fieldName, Class<? extends T> type)
    Get a converted value from this Record, providing a field name, using Fields.field(String) for lookup.
    <U> U
    Record.getValue(String fieldName, Converter<?,? extends U> converter)
    Get a converted value from this Record, providing a field name, using Fields.field(String) for lookup.
    <T> T
    Record.getValue(Field<?> field, Class<? extends T> type)
    Get a converted value from this Record, providing a field, using Fields.field(Field) for lookup.
    <T, U> U
    Record.getValue(Field<T> field, Converter<? super T,? extends U> converter)
    Get a converted value from this Record, providing a field, using Fields.field(Field) for lookup.
    <T> T
    Record.getValue(Name fieldName, Class<? extends T> type)
    Get a converted value from this Record, providing a field name, using Fields.field(Name) for lookup.
    <U> U
    Record.getValue(Name fieldName, Converter<?,? extends U> converter)
    Get a converted value from this Record, providing a field name, using Fields.field(Name) for lookup.
    <U> @NotNull List<U>
    Result.getValues(int index, Class<? extends U> type)
    Convenience method to fetch all values for a given field.
    <U> @NotNull List<U>
    Result.getValues(int index, Converter<?,? extends U> converter)
    Convenience method to fetch all values for a given field.
    <U> @NotNull List<U>
    Result.getValues(String fieldName, Class<? extends U> type)
    Convenience method to fetch all values for a given field.
    <U> @NotNull List<U>
    Result.getValues(String fieldName, Converter<?,? extends U> converter)
    Convenience method to fetch all values for a given field.
    <U> @NotNull List<U>
    Result.getValues(Name fieldName, Class<? extends U> type)
    Convenience method to fetch all values for a given field.
    <U> @NotNull List<U>
    Result.getValues(Name fieldName, Converter<?,? extends U> converter)
    Convenience method to fetch all values for a given field.
    <U> U @NotNull []
    Result.intoArray(int fieldIndex, Class<? extends U> type)
    Return all values for a field index from the result.
    <U> U @NotNull []
    Result.intoArray(int fieldIndex, Converter<?,? extends U> converter)
    Return all values for a field index from the result.
    <U> U @NotNull []
    Result.intoArray(String fieldName, Class<? extends U> type)
    Return all values for a field name from the result, using Fields.field(String) for lookup.
    <U> U @NotNull []
    Result.intoArray(String fieldName, Converter<?,? extends U> converter)
    Return all values for a field name from the result, using Fields.field(String) for lookup.
    <U> U @NotNull []
    Result.intoArray(Field<?> field, Class<? extends U> type)
    Return all values for a field from the result, using Fields.field(Field) for lookup.
    <T, U> U @NotNull []
    Result.intoArray(Field<T> field, Converter<? super T,? extends U> converter)
    Return all values for a field from the result, using Fields.field(Field) for lookup.
    <U> U @NotNull []
    Result.intoArray(Name fieldName, Class<? extends U> type)
    Return all values for a field name from the result, using Fields.field(Name) for lookup.
    <U> U @NotNull []
    Result.intoArray(Name fieldName, Converter<?,? extends U> converter)
    Return all values for a field name from the result, using Fields.field(Name) for lookup.
    <U> @NotNull Set<U>
    Result.intoSet(int fieldIndex, Class<? extends U> type)
    Return all values for a field index from the result.
    <U> @NotNull Set<U>
    Result.intoSet(int fieldIndex, Converter<?,? extends U> converter)
    Return all values for a field index from the result.
    <U> @NotNull Set<U>
    Result.intoSet(String fieldName, Class<? extends U> type)
    Return all values for a field name from the result, using Fields.field(String) for lookup.
    <U> @NotNull Set<U>
    Result.intoSet(String fieldName, Converter<?,? extends U> converter)
    Return all values for a field name from the result, using Fields.field(String) for lookup.
    <U> @NotNull Set<U>
    Result.intoSet(Field<?> field, Class<? extends U> type)
    Return all values for a field from the result, using Fields.field(Field) for lookup.
    <T, U> @NotNull Set<U>
    Result.intoSet(Field<T> field, Converter<? super T,? extends U> converter)
    Return all values for a field from the result, using Fields.field(Field) for lookup.
    <U> @NotNull Set<U>
    Result.intoSet(Name fieldName, Class<? extends U> type)
    Return all values for a field name from the result, using Fields.field(Name) for lookup.
    <U> @NotNull Set<U>
    Result.intoSet(Name fieldName, Converter<?,? extends U> converter)
    Return all values for a field name from the result, using Fields.field(Name) for lookup.
    void
    Param.setConverted(Object value)
    Deprecated, for removal: This API element is subject to removal in a future version.
    - 3.8.0 - [#4991] In jOOQ 4.0, Param will be made immutable.
  • Uses of DataTypeException in org.jooq.impl

    Methods in org.jooq.impl that throw DataTypeException
    Modifier and Type
    Method
    Description
    static final <T> T
    Internal.convert(Object from, Class<? extends T> toClass)
    Deprecated, for removal: This API element is subject to removal in a future version.
    static final <U> U
    Internal.convert(Object from, Converter<?,? extends U> converter)
    Deprecated, for removal: This API element is subject to removal in a future version.
    static final <T> List<T>
    Internal.convert(Collection<?> collection, Class<? extends T> type)
    Deprecated, for removal: This API element is subject to removal in a future version.
    static final <U> List<U>
    Internal.convert(Collection<?> collection, Converter<?,? extends U> converter)
    Deprecated, for removal: This API element is subject to removal in a future version.
    static final Object[]
    Internal.convertArray(Object[] from, Class<?> toClass)
    Deprecated, for removal: This API element is subject to removal in a future version.
    static final <U> U[]
    Internal.convertArray(Object[] from, Converter<?,? extends U> converter)
    Deprecated, for removal: This API element is subject to removal in a future version.
  • Uses of DataTypeException in org.jooq.tools

    Methods in org.jooq.tools that throw DataTypeException
    Modifier and Type
    Method
    Description
    static final <T> T
    Convert.convert(Object from, Class<? extends T> toClass)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Convert an object to a type.
    static final <U> U
    Convert.convert(Object from, Converter<?,? extends U> converter)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Convert an object to a type.
    static final <T> List<T>
    Convert.convert(Collection<?> collection, Class<? extends T> type)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Convert a collection of objects to a list of T, using Convert.convert(Object, Class)
    static final <U> List<U>
    Convert.convert(Collection<?> collection, Converter<?,? extends U> converter)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Convert a collection of objects to a list of T, using Convert.convert(Object, Converter)
    static final Object[]
    Convert.convertArray(Object[] from, Class<?> toClass)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Convert an array into another one by these rules
    static final <U> U[]
    Convert.convertArray(Object[] from, Converter<?,? extends U> converter)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Convert an array into another one using a converter