Uses of Interface
org.apache.jackrabbit.spi.commons.query.jsr283.qom.Constraint

Packages that use Constraint
org.apache.jackrabbit.core.query   
org.apache.jackrabbit.spi.commons.query.jsr283.qom   
org.apache.jackrabbit.spi.commons.query.qom   
 

Uses of Constraint in org.apache.jackrabbit.core.query
 

Methods in org.apache.jackrabbit.core.query that return Constraint
 Constraint QueryObjectModelImpl.getConstraint()
          Gets the constraint for this query.
 

Uses of Constraint in org.apache.jackrabbit.spi.commons.query.jsr283.qom
 

Subinterfaces of Constraint in org.apache.jackrabbit.spi.commons.query.jsr283.qom
 interface And
          Performs a logical conjunction of two other constraints.
 interface ChildNode
          Tests whether the selector node is a child of a node reachable by absolute path path.
 interface Comparison
          Filters node-tuples based on the outcome of a binary operation.
 interface DescendantNode
          Tests whether the selector node is a descendant of a node reachable by absolute path path.
 interface FullTextSearch
          Performs a full-text search.
 interface Not
          Performs a logical negation of another constraint.
 interface Or
          Performs a logical disjunction of two other constraints.
 interface PropertyExistence
          Tests the existence of a property.
 interface SameNode
          Tests whether the selector node is reachable by absolute path path.
 

Methods in org.apache.jackrabbit.spi.commons.query.jsr283.qom that return Constraint
 Constraint QueryObjectModel.getConstraint()
          Gets the constraint for this query.
 Constraint Not.getConstraint()
          Gets the constraint negated by this Not constraint.
 Constraint Or.getConstraint1()
          Gets the first constraint.
 Constraint And.getConstraint1()
          Gets the first constraint.
 Constraint Or.getConstraint2()
          Gets the second constraint.
 Constraint And.getConstraint2()
          Gets the second constraint.
 

Methods in org.apache.jackrabbit.spi.commons.query.jsr283.qom with parameters of type Constraint
 And QueryObjectModelFactory.and(Constraint constraint1, Constraint constraint2)
          Performs a logical conjunction of two other constraints.
 QueryObjectModel QueryObjectModelFactory.createQuery(Selector selector, Constraint constraint, Ordering[] orderings, Column[] columns)
          Creates a query with one selector.
 QueryObjectModel QueryObjectModelFactory.createQuery(Source source, Constraint constraint, Ordering[] orderings, Column[] columns)
          Creates a query with one or more selectors.
 Not QueryObjectModelFactory.not(Constraint constraint)
          Performs a logical negation of another constraint.
 Or QueryObjectModelFactory.or(Constraint constraint1, Constraint constraint2)
          Performs a logical disjunction of two other constraints.
 

Uses of Constraint in org.apache.jackrabbit.spi.commons.query.qom
 

Classes in org.apache.jackrabbit.spi.commons.query.qom that implement Constraint
 class AndImpl
          AndImpl...
 class ChildNodeImpl
          ChildNodeImpl...
 class ComparisonImpl
          ComparisonImpl...
 class ConstraintImpl
          ConstraintImpl is the common basis for classes that implement the Constraint interface.
 class DescendantNodeImpl
          DescendantNodeImpl...
 class FullTextSearchImpl
          FullTextSearchImpl...
 class NotImpl
          NotImpl...
 class OrImpl
          OrImpl...
 class PropertyExistenceImpl
          PropertyExistenceImpl...
 class SameNodeImpl
          SameNodeImpl...
 

Methods in org.apache.jackrabbit.spi.commons.query.qom that return Constraint
 Constraint NotImpl.getConstraint()
          Gets the constraint negated by this Not constraint.
 Constraint OrImpl.getConstraint1()
          Gets the first constraint.
 Constraint AndImpl.getConstraint1()
          Gets the first constraint.
 Constraint OrImpl.getConstraint2()
          Gets the second constraint.
 Constraint AndImpl.getConstraint2()
          Gets the second constraint.
 

Methods in org.apache.jackrabbit.spi.commons.query.qom with parameters of type Constraint
 And QueryObjectModelFactoryImpl.and(Constraint constraint1, Constraint constraint2)
          Performs a logical conjunction of two other constraints.
 QueryObjectModel QueryObjectModelFactoryImpl.createQuery(Selector selector, Constraint constraint, Ordering[] orderings, Column[] columns)
          Creates a query with one selector.
 QueryObjectModel QueryObjectModelFactoryImpl.createQuery(Source source, Constraint constraint, Ordering[] orderings, Column[] columns)
          Creates a query with one or more selectors.
 Not QueryObjectModelFactoryImpl.not(Constraint constraint)
          Performs a logical negation of another constraint.
 Or QueryObjectModelFactoryImpl.or(Constraint constraint1, Constraint constraint2)
          Performs a logical disjunction of two other constraints.
 



Copyright © 2004-2008 The Apache Software Foundation. All Rights Reserved.