|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CriteriaInterface | |
---|---|
org.apache.torque.criteria | This package contains Torque's Criteria classes. |
org.apache.torque.map | Description of the schema layout. |
org.apache.torque.om.mapper | Contains the Mapper interface which defines how to map from a ResultSet to an object, and simple implementations of this interface. |
org.apache.torque.sql | This package contains classes which are mainly used in the SQL generation process. |
org.apache.torque.util | Misc. |
Uses of CriteriaInterface in org.apache.torque.criteria |
---|
Classes in org.apache.torque.criteria that implement CriteriaInterface | |
---|---|
class |
Criteria
Encapsulates conditions to access rows in database tables. |
Uses of CriteriaInterface in org.apache.torque.map |
---|
Methods in org.apache.torque.map with parameters of type CriteriaInterface | |
---|---|
static ColumnMap |
MapHelper.getColumnMap(Column column,
CriteriaInterface<?> criteria)
Returns the column map for a column. |
static TableMap |
MapHelper.getTableMap(Object possibleColumn,
CriteriaInterface<?> criteria,
TableMap defaultTableMap)
Returns the table map for a table name. |
Uses of CriteriaInterface in org.apache.torque.om.mapper |
---|
Methods in org.apache.torque.om.mapper with parameters of type CriteriaInterface | |
---|---|
Integer |
IntegerMapper.processRow(ResultSet resultSet,
int rowOffset,
CriteriaInterface<?> criteria)
Maps the current row in the result set to a Integer. |
Long |
LongMapper.processRow(ResultSet resultSet,
int rowOffset,
CriteriaInterface<?> criteria)
Maps the current row in the result set to a Long. |
BigDecimal |
BigDecimalMapper.processRow(ResultSet resultSet,
int rowOffset,
CriteriaInterface<?> criteria)
Maps the current row in the result to a BigDecimal. |
T |
RecordMapper.processRow(ResultSet resultSet,
int rowOffset,
CriteriaInterface<?> criteria)
Constructs the object from the current row in the resultSet. |
List<Object> |
ObjectListMapper.processRow(ResultSet resultSet,
int offset,
CriteriaInterface<?> criteria)
Maps the current row in the result set by reading all columns from offset on to the end of the row and store an object for each column in the result. |
List<Object> |
CompositeMapper.processRow(ResultSet resultSet,
int offset,
CriteriaInterface<?> criteria)
Maps the current row in the result Set by applying all known mappers and putting the result of each mapper in the result list. |
Date |
DateMapper.processRow(ResultSet resultSet,
int rowOffset,
CriteriaInterface<?> criteria)
Maps the current row in the result set to a java.util.Date. |
String |
StringMapper.processRow(ResultSet resultSet,
int rowOffset,
CriteriaInterface<?> criteria)
Maps the current row in the result set to a String. |
Uses of CriteriaInterface in org.apache.torque.sql |
---|
Methods in org.apache.torque.sql with parameters of type CriteriaInterface | |
---|---|
static void |
JoinBuilder.processJoins(CriteriaInterface<?> criteria,
Query query)
Adds the Joins from the criteria to the query. |
Uses of CriteriaInterface in org.apache.torque.util |
---|
Constructors in org.apache.torque.util with parameters of type CriteriaInterface | |
---|---|
LargeSelect(CriteriaInterface<?> criteria,
int pageSize,
BasePeerImpl<T> peerImpl)
Creates a LargeSelect whose results are returned as a List
containing a maximum of pageSize objects of the type
defined within the class named returnBuilderClassName at a
time, maintaining a maximum of LargeSelect.memoryPageLimit
pages of results in memory. |
|
LargeSelect(CriteriaInterface<?> criteria,
int pageSize,
int memoryPageLimit,
BasePeerImpl<T> peerImpl)
Creates a LargeSelect whose results are returned as a List
containing a maximum of pageSize objects of the type T at a
time, maintaining a maximum of memoryPageLimit pages of
results in memory. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |