Package repast.simphony.query
Interface PredicateQuery<T>
- All Superinterfaces:
Query<T>
Deprecated.
Iterface marks a Query as dependent on an org.apache.commons.collections.Predicate.
This Predicate can then be returned. Certain queries can use this information to
do some query optimization.
- Version:
- $Revision$ $Date$
- Author:
- Nick Collier
-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.commons.collections15.Predicate<T>
Deprecated.Gets the Predicate that will be used in this Predicate's next call to query().
-
Method Details
-
getQueryPredicate
org.apache.commons.collections15.Predicate<T> getQueryPredicate()Deprecated.Gets the Predicate that will be used in this Predicate's next call to query().- Returns:
- the Predicate that will be used in this Predicate's next call to query().
-
Context.getObjectsAsStream(Class)
and the Java 8+ streaming APIStream
instead.