Uses of Interface
net.ontopia.topicmaps.query.utils.RowMapperIF
Packages that use RowMapperIF
Package
Description
This package provides query utility classes.
-
Uses of RowMapperIF in net.ontopia.topicmaps.query.utils
Methods in net.ontopia.topicmaps.query.utils with parameters of type RowMapperIFModifier and TypeMethodDescriptionQueryWrapper.queryForList(String query, RowMapperIF mapper) EXPERIMENTAL: Runs the query, and calls the mapper for each row in the query result.QueryWrapper.queryForList(String query, RowMapperIF mapper, Map params) EXPERIMENTAL: Runs the query with the given parameters, and calls the mapper for each row in the query result.QueryWrapper.queryForObject(String query, RowMapperIF mapper) EXPERIMENTAL: Returns the mapping of the value in the first column in the first row of the query result.QueryWrapper.queryForObject(String query, RowMapperIF mapper, Map params) EXPERIMENTAL: Returns the mapping of the value in the first column in the first row of the query result. -
Uses of RowMapperIF in ontopoly.model
Methods in ontopoly.model with parameters of type RowMapperIFModifier and TypeMethodDescriptionQueryMapper.queryForList(String query, RowMapperIF<T> mapper) EXPERIMENTAL: Runs the query, and calls the mapper for each row in the query result.QueryMapper.queryForList(String query, RowMapperIF<T> mapper, Map<String, ?> params) EXPERIMENTAL: Runs the query with the given parameters, and calls the mapper for each row in the query result.QueryMapper.queryForObject(String query, RowMapperIF<T> mapper) EXPERIMENTAL: Returns the value in the first column in the first row of the query result.QueryMapper.queryForObject(String query, RowMapperIF<T> mapper, Map<String, ?> params) EXPERIMENTAL: Returns the mapping of the value in the first column in the first row of the query result. -
Uses of RowMapperIF in ontopoly.utils
Methods in ontopoly.utils that return RowMapperIFModifier and TypeMethodDescriptionstatic RowMapperIF<Object>OntopolyModelUtils.getRowMapperOneColumn()