Uses of Interface
com.db4o.query.Query
-
Packages that use Query Package Description com.db4o com.db4o.events com.db4o.internal com.db4o.internal.callbacks com.db4o.internal.events com.db4o.internal.qlin com.db4o.internal.query com.db4o.internal.query.processor com.db4o.query -
-
Uses of Query in com.db4o
Methods in com.db4o that return Query Modifier and Type Method Description Query
ObjectContainer. query()
Creates a new S.O.D.A. -
Uses of Query in com.db4o.events
Methods in com.db4o.events that return Query Modifier and Type Method Description Query
QueryEventArgs. query()
TheQuery
which triggered the event.Constructors in com.db4o.events with parameters of type Query Constructor Description QueryEventArgs(Transaction transaction, Query q)
Creates a new instance for the specifiedQuery
instance. -
Uses of Query in com.db4o.internal
Methods in com.db4o.internal that return Query Modifier and Type Method Description Query
ExternalObjectContainer. query()
Query
ObjectContainerBase. query(Transaction ta)
Query
ObjectContainerSession. query()
-
Uses of Query in com.db4o.internal.callbacks
Methods in com.db4o.internal.callbacks with parameters of type Query Modifier and Type Method Description void
Callbacks. queryOnFinished(Transaction transaction, Query query)
void
NullCallbacks. queryOnFinished(Transaction transaction, Query query)
void
Callbacks. queryOnStarted(Transaction transaction, Query query)
void
NullCallbacks. queryOnStarted(Transaction transaction, Query query)
-
Uses of Query in com.db4o.internal.events
Methods in com.db4o.internal.events with parameters of type Query Modifier and Type Method Description void
EventRegistryImpl. queryOnFinished(Transaction transaction, Query query)
void
EventRegistryImpl. queryOnStarted(Transaction transaction, Query query)
-
Uses of Query in com.db4o.internal.qlin
Methods in com.db4o.internal.qlin that return Query Modifier and Type Method Description Query
QLinRoot. query()
protected Query
QLinSubNode. query()
Constructors in com.db4o.internal.qlin with parameters of type Query Constructor Description QLinRoot(Query query, java.lang.Class<T> clazz)
-
Uses of Query in com.db4o.internal.query
Methods in com.db4o.internal.query with parameters of type Query Modifier and Type Method Description <T> ObjectSet<T>
NativeQueryHandler. execute(Query query, Predicate<T> predicate, QueryComparator<T> comparator)
java.lang.Object
Db4oNQOptimizer. optimize(Query query, Predicate filter)
void
Db4oEnhancedFilter. optimizeQuery(Query query)
-
Uses of Query in com.db4o.internal.query.processor
Classes in com.db4o.internal.query.processor that implement Query Modifier and Type Class Description class
QQuery
QQuery is the users hook on our graph.Methods in com.db4o.internal.query.processor that return Query Modifier and Type Method Description Query
QQueryBase. descend(java.lang.String a_field)
Query
QQueryBase. orderAscending()
Query
QQueryBase. orderDescending()
Query
QQuery. sortBy(java.util.Comparator comparator)
Query
QQueryBase. sortBy(QueryComparator comparator)
-
Uses of Query in com.db4o.query
Methods in com.db4o.query that return Query Modifier and Type Method Description Query
Query. descend(java.lang.String fieldName)
Returns a reference to a descendant node in the query graph.Query
Query. orderAscending()
Adds an ascending ordering criteria to this node of the query graph.Query
Query. orderDescending()
Adds a descending order criteria to this node of the query graph.Query
Query. sortBy(QueryComparator<?> comparator)
Sort the resulting ObjectSet by the given comparator.Query
Query. sortBy(java.util.Comparator comparator)
Sort the resulting ObjectSet by the given comparator.
-