org.neo4j.helpers
Class Specifications
java.lang.Object
org.neo4j.helpers.Specifications
public class Specifications
- extends Object
Common specifications
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Specifications
public Specifications()
TRUE
public static <T> Specification<T> TRUE()
not
public static <T> Specification<T> not(Specification<T> specification)
and
public static <T> Specifications.AndSpecification<T> and(Specification<T>... specifications)
and
public static <T> Specifications.AndSpecification<T> and(Iterable<Specification<T>> specifications)
or
public static <T> Specifications.OrSpecification<T> or(Specification<T>... specifications)
or
public static <T> Specifications.OrSpecification<T> or(Iterable<Specification<T>> specifications)
in
public static <T> Specification<T> in(T... allowed)
in
public static <T> Specification<T> in(Iterable<T> allowed)
notNull
public static <T> Specification<T> notNull()
translate
public static <FROM,TO> Specification<FROM> translate(Function<FROM,TO> function,
Specification<? super TO> specification)
Copyright © 2002-2012 The Neo4j Graph Database Project. All Rights Reserved.