Uses of Interface
com.db4o.query.Constraint
-
Packages that use Constraint Package Description com.db4o.internal.qlin com.db4o.internal.query.processor com.db4o.query -
-
Uses of Constraint in com.db4o.internal.qlin
Constructors in com.db4o.internal.qlin with parameters of type Constraint Constructor Description QLinConstraint(QLinRoot<T> root, Constraint constraint)
-
Uses of Constraint in com.db4o.internal.query.processor
Classes in com.db4o.internal.query.processor that implement Constraint Modifier and Type Class Description class
QCon
Base class for all constraints on queries.class
QConClass
Class constraint on queriesclass
QConEvaluation
class
QConJoin
Join constraint on queriesclass
QConObject
Object constraint on queriesclass
QConPath
Placeholder for a constraint, only necessary to attach children to the query graph.class
QConstraints
Array of constraints for queries.class
QConUnconditional
Methods in com.db4o.internal.query.processor that return Constraint Modifier and Type Method Description Constraint
QCon. and(Constraint andWith)
Constraint
QCon. byExample()
Constraint
QConObject. byExample()
Constraint
QQueryBase. constrain(java.lang.Object example)
Search for slot that corresponds to class.Constraint
QCon. contains()
Constraint
QConObject. contains()
Constraint
QConstraints. contains()
Constraint
QCon. endsWith(boolean caseSensitive)
Constraint
QConObject. endsWith(boolean caseSensitive)
Constraint
QConstraints. endsWith(boolean caseSensitive)
Constraint
QCon. equal()
Constraint
QConClass. equal()
Constraint
QConObject. equal()
Constraint
QConstraints. equal()
Constraint
QCon. greater()
Constraint
QConObject. greater()
Constraint
QConstraints. greater()
Constraint
QCon. identity()
Constraint
QConObject. identity()
Constraint
QConstraints. identity()
Constraint
QCon. like()
Constraint
QConObject. like()
Constraint
QConstraints. like()
Constraint
QCon. not()
Constraint
QConstraints. not()
Constraint
QCon. or(Constraint orWith)
Constraint
QCon. smaller()
Constraint
QConObject. smaller()
Constraint
QConstraints. smaller()
Constraint
QCon. startsWith(boolean caseSensitive)
Constraint
QConObject. startsWith(boolean caseSensitive)
Constraint
QConstraints. startsWith(boolean caseSensitive)
Constraint[]
QConstraints. toArray()
Methods in com.db4o.internal.query.processor with parameters of type Constraint Modifier and Type Method Description Constraint
QCon. and(Constraint andWith)
Constraint
QCon. or(Constraint orWith)
-
Uses of Constraint in com.db4o.query
Subinterfaces of Constraint in com.db4o.query Modifier and Type Interface Description interface
Constraints
A set ofConstraint
objects.Methods in com.db4o.query that return Constraint Modifier and Type Method Description Constraint
Constraint. and(Constraint with)
Links two Constraints for AND evaluation.Constraint
Constraint. byExample()
Set the evaluation mode to object comparison (query by example).Constraint
Query. constrain(java.lang.Object constraint)
Adds a constraint to this node.Constraint
Constraint. contains()
Sets the evaluation mode to string contains comparison.Constraint
Constraint. endsWith(boolean caseSensitive)
Sets the evaluation mode to string endsWith comparison.Constraint
Constraint. equal()
Constraint
Constraint. greater()
Sets the evaluation mode to >.Constraint
Constraint. identity()
Sets the evaluation mode to identity comparison.Constraint
Constraint. like()
Sets the evaluation mode to "like" comparison.Constraint
Constraint. not()
Turns on not() comparison.Constraint
Constraint. or(Constraint with)
Links two Constraints for OR evaluation.Constraint
Constraint. smaller()
Sets the evaluation mode to <.Constraint
Constraint. startsWith(boolean caseSensitive)
Sets the evaluation mode to string startsWith comparison.Constraint[]
Constraints. toArray()
returns an array of the containedConstraint
objects.Methods in com.db4o.query with parameters of type Constraint Modifier and Type Method Description Constraint
Constraint. and(Constraint with)
Links two Constraints for AND evaluation.Constraint
Constraint. or(Constraint with)
Links two Constraints for OR evaluation.
-