|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use QSelection | |
---|---|
to.etc.domui.hibernate.generic | |
to.etc.domui.hibernate.model | |
to.etc.webapp.qsql | |
to.etc.webapp.query |
Uses of QSelection in to.etc.domui.hibernate.generic |
---|
Methods in to.etc.domui.hibernate.generic with parameters of type QSelection | |
---|---|
java.util.List<java.lang.Object[]> |
HibernateQueryExecutor.query(BuggyHibernateBaseContext root,
QSelection<?> sel)
|
Uses of QSelection in to.etc.domui.hibernate.model |
---|
Methods in to.etc.domui.hibernate.model with parameters of type QSelection | |
---|---|
static Criteria |
GenericHibernateHandler.createCriteria(Session ses,
QSelection<?> qc)
|
void |
CriteriaCreatingVisitorWithSubcriteria.visitSelection(QSelection<?> s)
|
void |
CriteriaCreatingVisitor.visitSelection(QSelection<?> s)
|
Uses of QSelection in to.etc.webapp.qsql |
---|
Methods in to.etc.webapp.qsql with parameters of type QSelection | ||
---|---|---|
static
|
JdbcQuery.create(QSelection<T> q)
|
|
java.util.List<java.lang.Object[]> |
JdbcQueryExecutor.query(QDataContext root,
QSelection<?> sel)
|
|
static java.util.List<java.lang.Object[]> |
JdbcQuery.query(QDataContext dc,
QSelection<?> sel)
|
|
java.util.List<java.lang.Object[]> |
JdbcDataContext.query(QSelection<?> sel)
|
|
static java.lang.Object[] |
JdbcQuery.queryOne(QDataContext dc,
QSelection<?> q)
|
|
java.lang.Object[] |
JdbcDataContext.queryOne(QSelection<?> q)
|
|
void |
JdbcSQLGenerator.visitSelection(QSelection<?> s)
|
Uses of QSelection in to.etc.webapp.query |
---|
Methods in to.etc.webapp.query that return QSelection | ||
---|---|---|
QSelection<T> |
QSelection.add(QOperatorNode r)
|
|
QSelection<T> |
QSelection.add(QOrder r)
Add an order clause to the list of sort items. |
|
QSelection<T> |
QSelection.ascending(java.lang.String property)
Add a property to do an ascending sort on. |
|
QSelection<T> |
QSelection.avg(java.lang.String property)
Select the average value of a property in the set. |
|
QSelection<T> |
QSelection.avg(java.lang.String property,
java.lang.String alias)
Select the average value of a property in the set. |
|
QSelection<T> |
QSelection.between(java.lang.String property,
java.lang.Object a,
java.lang.Object b)
Compare the value of a property with two literal bounds. |
|
QSelection<T> |
QSelection.count(java.lang.String property)
Select a count over the result set. |
|
QSelection<T> |
QSelection.count(java.lang.String property,
java.lang.String alias)
Select a count over the result set. |
|
QSelection<T> |
QSelection.countDistinct(java.lang.String property)
Select a count of the distinct values over the result set. |
|
QSelection<T> |
QSelection.countDistinct(java.lang.String property,
java.lang.String alias)
Select a count of the distinct values over the result set. |
|
static
|
QSelection.create(java.lang.Class<T> root)
Create a selection query based on the specified persistent class (public API). |
|
QSelection<T> |
QSelection.descending(java.lang.String property)
Add a property to do a descending sort on. |
|
QSelection<T> |
QSelection.eq(java.lang.String property,
double value)
Compare a property with some literal object value. |
|
QSelection<T> |
QSelection.eq(java.lang.String property,
long value)
Compare a property with some literal object value. |
|
QSelection<T> |
QSelection.eq(java.lang.String property,
java.lang.Object value)
Compare a property with some literal object value. |
|
QSelection<T> |
QSelection.ge(java.lang.String property,
double value)
Compare a property with some literal object value. |
|
QSelection<T> |
QSelection.ge(java.lang.String property,
long value)
Compare a property with some literal object value. |
|
QSelection<T> |
QSelection.ge(java.lang.String property,
java.lang.Object value)
Compare a property with some literal object value. |
|
QSelection<?> |
QSelectionSubquery.getSelectionQuery()
|
|
QSelection<T> |
QSelection.gt(java.lang.String property,
double value)
Compare a property with some literal object value. |
|
QSelection<T> |
QSelection.gt(java.lang.String property,
long value)
Compare a property with some literal object value. |
|
QSelection<T> |
QSelection.gt(java.lang.String property,
java.lang.Object value)
Compare a property with some literal object value. |
|
QSelection<T> |
QSelection.ilike(java.lang.String property,
java.lang.Object value)
Do a case-independent 'like' comparison. |
|
QSelection<T> |
QSelection.isnotnull(java.lang.String property)
Add the restriction that the property specified must be not-null. |
|
QSelection<T> |
QSelection.isnull(java.lang.String property)
Add the restriction that the property specified must be null. |
|
QSelection<T> |
QSelection.le(java.lang.String property,
double value)
Compare a property with some literal object value. |
|
QSelection<T> |
QSelection.le(java.lang.String property,
long value)
Compare a property with some literal object value. |
|
QSelection<T> |
QSelection.le(java.lang.String property,
java.lang.Object value)
Compare a property with some literal object value. |
|
QSelection<T> |
QSelection.like(java.lang.String property,
java.lang.Object value)
Do a 'like' comparison. |
|
QSelection<T> |
QSelection.lt(java.lang.String property,
double value)
Compare a property with some literal object value. |
|
QSelection<T> |
QSelection.lt(java.lang.String property,
long value)
Compare a property with some literal object value. |
|
QSelection<T> |
QSelection.lt(java.lang.String property,
java.lang.Object value)
Compare a property with some literal object value. |
|
QSelection<T> |
QSelection.max(java.lang.String property)
Select the max of a property in the set. |
|
QSelection<T> |
QSelection.max(java.lang.String property,
java.lang.String alias)
Select the max of a property in the set. |
|
QSelection<T> |
QSelection.min(java.lang.String property)
Select the minimal value of a property in the set. |
|
QSelection<T> |
QSelection.min(java.lang.String property,
java.lang.String alias)
Select the minimal value of a property in the set. |
|
QSelection<T> |
QSelection.ne(java.lang.String property,
double value)
Compare a property with some literal object value. |
|
QSelection<T> |
QSelection.ne(java.lang.String property,
long value)
Compare a property with some literal object value. |
|
QSelection<T> |
QSelection.ne(java.lang.String property,
java.lang.Object value)
Compare a property with some literal object value. |
|
QSelection<T> |
QSelection.or(QOperatorNode a1,
QOperatorNode a2,
QOperatorNode... a)
Deprecated. |
|
QSelection<T> |
QSelection.selectProperty(java.lang.String property)
Select a property value from the base property in the result set. |
|
QSelection<T> |
QSelection.selectProperty(java.lang.String property,
java.lang.String alias)
Select a property value from the base property in the result set. |
|
QSelection<T> |
QSelection.sqlCondition(java.lang.String sql)
Add a restriction specified in bare SQL. |
|
QSelection<T> |
QSelection.sum(java.lang.String property)
Select the sum of a property in the set. |
|
QSelection<T> |
QSelection.sum(java.lang.String property,
java.lang.String alias)
Select the sum of a property in the set. |
Methods in to.etc.webapp.query with parameters of type QSelection | |
---|---|
java.util.List<java.lang.Object[]> |
IQueryExecutor.query(C root,
QSelection<?> sel)
Issue a selection query, where multiple fields or projections on fields are selected from a base class. |
java.util.List<java.lang.Object[]> |
QDataContext.query(QSelection<?> sel)
Issue a selection query, where multiple fields or projections on fields are selected from a base class. |
java.util.List<java.lang.Object[]> |
QAbstractDataContext.query(QSelection<?> sel)
Issue a selection query, where multiple fields or projections on fields are selected from a base class. |
java.lang.Object[] |
QDataContext.queryOne(QSelection<?> q)
Execute the selection query specified by q, and expect and return at most 1 result. |
java.lang.Object[] |
QAbstractDataContext.queryOne(QSelection<?> sel)
Execute the selection query specified by q, and expect and return at most 1 result. |
void |
QQueryRenderer.visitSelection(QSelection<?> s)
|
void |
QNodeVisitorBase.visitSelection(QSelection<?> s)
|
void |
QNodeVisitor.visitSelection(QSelection<?> s)
|
void |
QNodeVisitorBase.visitSelectionColumns(QSelection<?> s)
|
Constructors in to.etc.webapp.query with parameters of type QSelection | |
---|---|
QSelectionSubquery(QSelection<?> parent)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |