Neo4j

Uses of Interface
org.neo4j.helpers.Predicate

Packages that use Predicate
org.neo4j.graphdb The core graph database API. 
org.neo4j.helpers Common Java utilities. 
org.neo4j.helpers.collection Collections utilities - Iterator/Iterable utilities and creating Maps. 
org.neo4j.kernel Implementation for embedding a Neo4j graph database in an application. 
org.neo4j.kernel.monitoring   
 

Uses of Predicate in org.neo4j.graphdb
 

Methods in org.neo4j.graphdb with parameters of type Predicate
 Expander Expander.addNodeFilter(Predicate<? super Node> filter)
          Add a Node filter.
 Expander Expander.addRelationshipFilter(Predicate<? super Relationship> filter)
          Add a Relationship filter.
 Expander Expander.addRelationsipFilter(Predicate<? super Relationship> filter)
          Deprecated. because of typo, use Expander.addRelationshipFilter(Predicate) instead
 

Uses of Predicate in org.neo4j.helpers
 

Classes in org.neo4j.helpers that implement Predicate
static class Predicates.AndPredicate<T>
           
static class Predicates.OrPredicate<T>
           
 

Methods in org.neo4j.helpers that return Predicate
static
<T> Predicate<T>
Predicates.equalTo(T allowed)
           
static Predicate<Throwable> Exceptions.exceptionsOfType(Class<? extends Throwable>... types)
           
static
<T> Predicate<T>
Predicates.in(Iterable<T> allowed)
           
static
<T> Predicate<T>
Predicates.in(T... allowed)
           
static
<T> Predicate<T>
Predicates.not(Predicate<T> specification)
           
static
<T> Predicate<T>
Predicates.notNull()
           
static
<FROM,TO> Predicate<FROM>
Predicates.translate(Function<FROM,TO> function, Predicate<? super TO> specification)
           
static
<T> Predicate<T>
Predicates.TRUE()
           
 

Methods in org.neo4j.helpers with parameters of type Predicate
 Predicates.AndPredicate<T> Predicates.AndPredicate.and(Predicate<T>... predicates)
           
 Predicates.AndPredicate<T> Predicates.OrPredicate.and(Predicate<T>... predicates)
           
static
<T> Predicates.AndPredicate<T>
Predicates.and(Predicate<T>... predicates)
           
static
<T> Predicate<T>
Predicates.not(Predicate<T> specification)
           
 Predicates.OrPredicate<T> Predicates.AndPredicate.or(Predicate<T>... predicates)
           
 Predicates.OrPredicate<T> Predicates.OrPredicate.or(Predicate<T>... predicates)
           
static
<T> Predicates.OrPredicate<T>
Predicates.or(Predicate<T>... predicates)
           
static Throwable Exceptions.peel(Throwable exception, Predicate<Throwable> toPeel)
          Peels off layers of causes.
static
<FROM,TO> Predicate<FROM>
Predicates.translate(Function<FROM,TO> function, Predicate<? super TO> specification)
           
 

Method parameters in org.neo4j.helpers with type arguments of type Predicate
static
<T> Predicates.AndPredicate<T>
Predicates.and(Iterable<Predicate<T>> predicates)
           
static
<T> Predicates.OrPredicate<T>
Predicates.or(Iterable<Predicate<T>> predicates)
           
 

Uses of Predicate in org.neo4j.helpers.collection
 

Methods in org.neo4j.helpers.collection that return Predicate
static
<T> Predicate<T>
FilteringIterable.noDuplicatesPredicate()
           
static
<T> Predicate<T>
FilteringIterable.notNullPredicate()
           
 

Methods in org.neo4j.helpers.collection with parameters of type Predicate
static
<X> Iterable<X>
Iterables.filter(Predicate<? super X> specification, Iterable<X> i)
           
static
<T> boolean
Iterables.matchesAll(Predicate<? super T> specification, Iterable<T> iterable)
           
static
<T> boolean
Iterables.matchesAny(Predicate<? super T> specification, Iterable<T> iterable)
           
 

Constructors in org.neo4j.helpers.collection with parameters of type Predicate
FilteringIterable(Iterable<T> source, Predicate<T> predicate)
           
FilteringIterator(Iterator<T> source, Predicate<T> predicate)
           
 

Uses of Predicate in org.neo4j.kernel
 

Methods in org.neo4j.kernel with parameters of type Predicate
 StandardExpander StandardExpander.addNodeFilter(Predicate<? super Node> filter)
           
 StandardExpander StandardExpander.addRelationshipFilter(Predicate<? super Relationship> filter)
           
 Expander StandardExpander.addRelationsipFilter(Predicate<? super Relationship> filter)
           
 

Uses of Predicate in org.neo4j.kernel.monitoring
 

Methods in org.neo4j.kernel.monitoring with parameters of type Predicate
 void Monitors.addMonitorListener(MonitorListenerInvocationHandler invocationHandler, Predicate<Method> methodSpecification)
           
 


Neo4j

Copyright © 2002-2014 The Neo4j Graph Database Project. All Rights Reserved.