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 public utilities.
  • Uses of DataTypeException in org.jooq

    Methods in org.jooq that throw DataTypeException
    Modifier and Type
    Method
    Description
    @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.
    <U> U
    Record.get(String fieldName, Converter<?,? extends U> converter)
    Get a converted value from this Record, providing a field name.
    <U> U
    Record.get(Field<?> field, Class<? extends U> type)
    Get a converted value from this Record, providing a field.
    <T, U> U
    Record.get(Field<T> field, Converter<? super T,? extends U> converter)
    Get a converted value from this Record, providing a field.
    <U> U
    Record.get(Name fieldName, Class<? extends U> type)
    Get a converted value from this Record, providing a field name.
    <U> U
    Record.get(Name fieldName, Converter<?,? extends U> converter)
    Get a converted value from this Record, providing a field name.
    <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.
    <U> U
    Record.getValue(String fieldName, Converter<?,? extends U> converter)
    Get a converted value from this Record, providing a field name.
    <T> T
    Record.getValue(Field<?> field, Class<? extends T> type)
    Get a converted value from this Record, providing a field.
    <T, U> U
    Record.getValue(Field<T> field, Converter<? super T,? extends U> converter)
    Get a converted value from this Record, providing a field.
    <T> T
    Record.getValue(Name fieldName, Class<? extends T> type)
    Get a converted value from this Record, providing a field name.
    <U> U
    Record.getValue(Name fieldName, Converter<?,? extends U> converter)
    Get a converted value from this Record, providing a field name.
    <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.
    <U> U @NotNull []
    Result.intoArray(String fieldName, Converter<?,? extends U> converter)
    Return all values for a field name from the result.
    <U> U @NotNull []
    Result.intoArray(Field<?> field, Class<? extends U> type)
    Return all values for a field from the result.
    <T, U> U @NotNull []
    Result.intoArray(Field<T> field, Converter<? super T,? extends U> converter)
    Return all values for a field from the result.
    <U> U @NotNull []
    Result.intoArray(Name fieldName, Class<? extends U> type)
    Return all values for a field name from the result.
    <U> U @NotNull []
    Result.intoArray(Name fieldName, Converter<?,? extends U> converter)
    Return all values for a field name from the result.
    <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.
    <U> @NotNull Set<U>
    Result.intoSet(String fieldName, Converter<?,? extends U> converter)
    Return all values for a field name from the result.
    <U> @NotNull Set<U>
    Result.intoSet(Field<?> field, Class<? extends U> type)
    Return all values for a field from the result.
    <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.
    <U> @NotNull Set<U>
    Result.intoSet(Name fieldName, Class<? extends U> type)
    Return all values for a field name from the result.
    <U> @NotNull Set<U>
    Result.intoSet(Name fieldName, Converter<?,? extends U> converter)
    Return all values for a field name from the result.
    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.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