Package | Description |
---|---|
org.modeshape.jcr.api.query.qom | |
org.modeshape.jcr.query.model |
The Abstract Query Model is a vocabulary that can be used to construct a language-neutral representation of a query.
|
Modifier and Type | Interface and Description |
---|---|
interface |
SetQueryObjectModel
A set query extension to the JCR query object model.
|
Modifier and Type | Method and Description |
---|---|
SetQuery |
QueryObjectModelFactory.except(QueryCommand left,
QueryCommand right,
Ordering[] orderings,
Limit limit,
boolean all)
Creates a query command that returns all rows that are in the result of the left-hand query but not in the result of the
right-hand query.
|
SetQuery |
QueryObjectModelFactory.intersect(QueryCommand left,
QueryCommand right,
Ordering[] orderings,
Limit limit,
boolean all)
Creates a query command that returns all rows that are both in the result of the left-hand query and in the result of the
right-hand query.
|
SetQuery |
QueryObjectModelFactory.union(QueryCommand left,
QueryCommand right,
Ordering[] orderings,
Limit limit,
boolean all)
Creates a query command that effectively appends the results of the right-hand query to those of the left-hand query.
|
Modifier and Type | Method and Description |
---|---|
SetQueryObjectModel |
QueryObjectModelFactory.createQuery(SetQuery command)
Creates a set query.
|
Modifier and Type | Class and Description |
---|---|
class |
SetQuery
This object acts as a Set operator on multiple
queries , such as performing UNION, INTERSECT, and EXCEPT
operations. |
class |
SetQueryObjectModel
Implementation of
SetQueryObjectModel that represents a set query . |
Modifier and Type | Method and Description |
---|---|
SetQuery |
QueryObjectModelFactory.union(QueryCommand left,
QueryCommand right,
Ordering[] orderings,
Limit limit,
boolean all) |
Modifier and Type | Method and Description |
---|---|
SetQueryObjectModel |
QueryObjectModelFactory.createQuery(SetQuery command) |
Copyright © 2008-2014 JBoss, a division of Red Hat. All Rights Reserved.