Uses of Interface
org.jdbi.v3.core.mapper.reflect.ColumnNameMatcher
-
Packages that use ColumnNameMatcher Package Description org.jdbi.v3.core.mapper.reflect mapper.reflectprovides 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 ColumnNameMatcher Modifier and Type Class Description classAbstractSeparatorCharColumnNameMatcherclassCaseInsensitiveColumnNameMatcherMatches column names with identical java names, ignoring case.classSnakeCaseColumnNameMatcherMatches snake case column names to java camel case names, ignoring case.Fields in org.jdbi.v3.core.mapper.reflect with type parameters of type ColumnNameMatcher Modifier and Type Field Description private java.util.List<ColumnNameMatcher>ReflectionMappers. columnNameMatchersMethods in org.jdbi.v3.core.mapper.reflect that return types with arguments of type ColumnNameMatcher Modifier and Type Method Description java.util.List<ColumnNameMatcher>ReflectionMappers. getColumnNameMatchers()Returns the registered column name mappers.Method parameters in org.jdbi.v3.core.mapper.reflect with type arguments of type ColumnNameMatcher Modifier and Type Method Description static booleanReflectionMapperUtil. anyColumnsStartWithPrefix(java.util.Collection<java.lang.String> columnNames, java.lang.String prefix, java.util.List<ColumnNameMatcher> columnNameMatchers)Returns whether any of the given column names begin with the given prefix, according to the list of column name matchers.ReflectionMappersReflectionMappers. setColumnNameMatchers(java.util.List<ColumnNameMatcher> columnNameMatchers)Replace all column name matchers with the given list.
-