|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Query | |
|---|---|
| de.mguennewig.pobjects | The package de.mguennewig.pobjects provides an abstraction
layer on top of a set of database tables by which table rows can be
accessed transparently as Java objects. |
| de.mguennewig.pobjects.event | The package provides classes to listen to database changes performed over the PObject library. |
| de.mguennewig.pobjects.filesystem | This package contains a PObjects Container that uses the file
system tree as a database table. |
| de.mguennewig.pobjects.jdbc | This package contains Container implementations that
use a JDBC connection. |
| de.mguennewig.pobjects.memdb | This package contains a simple non-persistent Container
implementation that operates only in memory. |
| de.mguennewig.pobjsearch | This package contains the PObjSearch framework that is based on the PObjForm library. |
| Uses of Query in de.mguennewig.pobjects |
|---|
| Methods in de.mguennewig.pobjects that return Query | |
|---|---|
Query |
Container.newQuery()
Creates a new empty query. |
Query |
Container.newQuery(java.lang.Class<? extends Record> tableClass)
Creates a new query for all rows of the given table expression. |
Query |
AbstractContainer.newQuery(java.lang.Class<? extends Record> tableClass)
Creates a new query for all rows of the given table expression. |
Query |
Container.newQuery(java.lang.Class<? extends Record>[] tableClasses,
Predicate[] filters)
Creates a new query with a filter on the given table expression. |
Query |
AbstractContainer.newQuery(java.lang.Class<? extends Record>[] tableClasses,
Predicate[] filters)
Creates a new query with a filter on the given table expression. |
Query |
Container.newQuery(java.lang.Class<? extends Record> tableClass,
Predicate filter)
Creates a new query with a filter on the given table expression. |
Query |
AbstractContainer.newQuery(java.lang.Class<? extends Record> tableClass,
Predicate filter)
Creates a new query with a filter on the given table expression. |
Query |
Container.newQuery(java.lang.Class<? extends Record> tableClass,
Predicate[] filters)
Creates a new query with a filter on the given table expression. |
Query |
AbstractContainer.newQuery(java.lang.Class<? extends Record> tableClass,
Predicate[] filters)
Creates a new query with a filter on the given table expression. |
Query |
Container.newQuery(TableExpr tableExpr)
Creates a new query for all rows of the given table expression. |
Query |
AbstractContainer.newQuery(TableExpr tableExpr)
Creates a new query for all rows of the given table expression. |
Query |
Container.newQuery(TableExpr[] tableExprs,
Predicate[] filters)
Creates a new query with a filter on the given table expressions. |
Query |
AbstractContainer.newQuery(TableExpr[] tableExprs,
Predicate[] filters)
Creates a new query with a filter on the given table expressions. |
Query |
Container.newQuery(TableExpr tableExpr,
Predicate filter)
Creates a new query with a filter on the given table expression. |
Query |
AbstractContainer.newQuery(TableExpr tableExpr,
Predicate filter)
Creates a new query with a filter on the given table expression. |
Query |
Container.newQuery(TableExpr tableExpr,
Predicate[] filters)
Creates a new query with a filter on the given table expression. |
Query |
AbstractContainer.newQuery(TableExpr tableExpr,
Predicate[] filters)
Creates a new query with a filter on the given table expression. |
| Uses of Query in de.mguennewig.pobjects.event |
|---|
| Methods in de.mguennewig.pobjects.event that return Query | |
|---|---|
Query |
ContainerWrapper.newQuery()
Creates a new empty query. |
| Uses of Query in de.mguennewig.pobjects.filesystem |
|---|
| Methods in de.mguennewig.pobjects.filesystem that return Query | |
|---|---|
Query |
FileSystemContainer.newQuery()
Creates a new empty query. |
| Uses of Query in de.mguennewig.pobjects.jdbc |
|---|
| Subclasses of Query in de.mguennewig.pobjects.jdbc | |
|---|---|
class |
JdbcQuery
Common base class for JDBC connection based queries. |
| Methods in de.mguennewig.pobjects.jdbc that return Query | |
|---|---|
Query |
JdbcContainer.newQuery()
Creates a new empty query. |
| Uses of Query in de.mguennewig.pobjects.memdb |
|---|
| Subclasses of Query in de.mguennewig.pobjects.memdb | |
|---|---|
class |
PredicateQuery
Abstract base class for all queries that are evaluated within the pobjects library using the Term instead of SQL. |
| Methods in de.mguennewig.pobjects.memdb that return Query | |
|---|---|
Query |
MemoryContainer.newQuery()
Creates a new empty query. |
| Uses of Query in de.mguennewig.pobjsearch |
|---|
| Methods in de.mguennewig.pobjsearch with parameters of type Query | |
|---|---|
void |
StaticSearchFilter.addFilter(PClassSearchForm.Condition condition,
Query q)
Adds this filter to the query. |
void |
SearchFilter.addFilter(PClassSearchForm.Condition condition,
Query q)
Adds this filter to the query. |
void |
RedirectFilter.addFilter(PClassSearchForm.Condition condition,
Query q)
Adds this filter to the query. |
void |
DefaultSearchColumn.addFilter(PClassSearchForm.Condition condition,
Query q)
Adds this filter to the query. |
void |
SearchColumn.addOrderBy(Query q,
boolean ascending)
Adds the sorting directives to the query for this column. |
void |
DefaultSearchColumn.addOrderBy(Query q,
boolean ascending)
Adds the sorting directives to the query for this column. |
void |
SearchColumn.pullInReferences(Query q)
Pulls in references that will be required for display. |
void |
DefaultSearchColumn.pullInReferences(Query q)
Pulls in references that will be required for display. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||