Uses of Interface
org.jdbi.v3.core.mapper.reflect.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
Modifier 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.Modifier and TypeMethodDescriptionReflectionMappers.getColumnNameMatchers()
Returns the registered column name mappers.Modifier 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.