Uses of Interface
org.jdbi.v3.core.mapper.reflect.ColumnNameMatcher
Packages that use ColumnNameMatcher
Package
Description
mapper.reflect
provides RowMappers that reflectively
construct result types using techniques like constructor injection
or JavaBeans setters.-
Uses of ColumnNameMatcher in org.jdbi.v3.core.mapper.reflect
Classes in org.jdbi.v3.core.mapper.reflect that implement ColumnNameMatcherModifier and TypeClassDescriptionclass
final class
Matches column names with identical java names, ignoring case.class
Matches snake case column names to java camel case names, ignoring case.Methods in org.jdbi.v3.core.mapper.reflect that return types with arguments of type ColumnNameMatcherModifier and TypeMethodDescriptionReflectionMappers.getColumnNameMatchers()
Returns the registered column name mappers.Method parameters in org.jdbi.v3.core.mapper.reflect with type arguments of type ColumnNameMatcherModifier and TypeMethodDescriptionstatic boolean
ReflectionMapperUtil.anyColumnsStartWithPrefix
(Collection<String> columnNames, String prefix, List<ColumnNameMatcher> columnNameMatchers) Returns whether any of the given column names begin with the given prefix, according to the list of column name matchers.ReflectionMappers.setColumnNameMatchers
(List<ColumnNameMatcher> columnNameMatchers) Replace all column name matchers with the given list.