Uses of Interface
org.jdbi.v3.core.array.SqlArrayType
-
Packages that use SqlArrayType Package Description org.jdbi.v3.core.array Thearraypackage binds Java arrays and collections to SQL arrays, and handles mapping array result types back to Java arrays and collections.org.jdbi.v3.core.config Theconfigclasses define a configuration registry starting from eachJdbiinstance.org.jdbi.v3.core.enums.internal org.jdbi.v3.core.statement Thestatementpackage provides most of the Fluent API to drive statement execution.org.jdbi.v3.postgres.internal -
-
Uses of SqlArrayType in org.jdbi.v3.core.array
Classes in org.jdbi.v3.core.array that implement SqlArrayType Modifier and Type Class Description (package private) classSqlArrayTypeImpl<T>Fields in org.jdbi.v3.core.array declared as SqlArrayType Modifier and Type Field Description private SqlArrayType<?>InferredSqlArrayTypeFactory. arrayTypeFields in org.jdbi.v3.core.array with type parameters of type SqlArrayType Modifier and Type Field Description private JdbiInterceptionChainHolder<SqlArrayType<?>,SqlArrayTypeFactory>SqlArrayTypes. inferenceInterceptorsMethods in org.jdbi.v3.core.array that return SqlArrayType Modifier and Type Method Description static <T> SqlArrayType<T>SqlArrayType. of(java.lang.String typeName, java.util.function.Function<T,?> conversion)Create a SqlArrayType from the given type and convert function.Methods in org.jdbi.v3.core.array that return types with arguments of type SqlArrayType Modifier and Type Method Description java.util.Optional<SqlArrayType<?>>InferredSqlArrayTypeFactory. build(java.lang.reflect.Type elementType, ConfigRegistry config)java.util.Optional<SqlArrayType<?>>SqlArrayTypeFactory. build(java.lang.reflect.Type elementType, ConfigRegistry config)Returns anSqlArrayTypefor the givenelementTypeif this factory supports it; empty otherwise.java.util.Optional<SqlArrayType<?>>SqlArrayTypes. findFor(java.lang.reflect.Type elementType)Obtain anSqlArrayTypefor the given array element type in the given contextJdbiInterceptionChainHolder<SqlArrayType<?>,SqlArrayTypeFactory>SqlArrayTypes. getInferenceInterceptors()Returns theJdbiInterceptionChainHolderfor the SqlArrayType inference.Methods in org.jdbi.v3.core.array with parameters of type SqlArrayType Modifier and Type Method Description private ArgumentSqlArrayArgumentFactory. arrayArgument(java.lang.Object value, SqlArrayType<?> arrayType)SqlArrayTypesSqlArrayTypes. register(SqlArrayType<?> arrayType)Register aSqlArrayTypewhich will have its parameterized type inspected to determine which element type it supports.Constructors in org.jdbi.v3.core.array with parameters of type SqlArrayType Constructor Description InferredSqlArrayTypeFactory(SqlArrayType<?> arrayType)SqlArrayArgument(SqlArrayType<T> arrayType, java.lang.Object newArray) -
Uses of SqlArrayType in org.jdbi.v3.core.config
Methods in org.jdbi.v3.core.config with parameters of type SqlArrayType Modifier and Type Method Description default ThisConfigurable. registerArrayType(SqlArrayType<?> arrayType)Convenience method forgetConfig(SqlArrayTypes.class).register(arrayType) -
Uses of SqlArrayType in org.jdbi.v3.core.enums.internal
Methods in org.jdbi.v3.core.enums.internal that return SqlArrayType Modifier and Type Method Description private <E extends java.lang.Enum<E>>
SqlArrayType<E>EnumSqlArrayTypeFactory. makeSqlArrayType(java.lang.Class<E> enumClass, ConfigRegistry config)Methods in org.jdbi.v3.core.enums.internal that return types with arguments of type SqlArrayType Modifier and Type Method Description java.util.Optional<SqlArrayType<?>>EnumSqlArrayTypeFactory. build(java.lang.reflect.Type elementType, ConfigRegistry config) -
Uses of SqlArrayType in org.jdbi.v3.core.statement
Methods in org.jdbi.v3.core.statement that return types with arguments of type SqlArrayType Modifier and Type Method Description java.util.Optional<SqlArrayType<?>>StatementContext. findSqlArrayTypeFor(java.lang.reflect.Type elementType)Obtain anSqlArrayTypefor the given array element type in this context -
Uses of SqlArrayType in org.jdbi.v3.postgres.internal
Classes in org.jdbi.v3.postgres.internal that implement SqlArrayType Modifier and Type Class Description classByteaArrayType
-