Uses of Interface
com.c8db.Predicate
-
Packages that use Predicate Package Description com.c8db com.c8db.internal.cursor -
-
Uses of Predicate in com.c8db
Methods in com.c8db with parameters of type Predicate Modifier and Type Method Description booleanC8Iterable. allMatch(Predicate<? super T> predicate)Returns whether all elements of thisArangoIterablematch the provided predicate.booleanC8Iterable. anyMatch(Predicate<? super T> predicate)Returns whether any elements of thisArangoIterablematch the provided predicate.C8Iterable<T>C8Iterable. filter(Predicate<? super T> predicate)Returns aArangoIterableconsisting of the elements of thisArangoIterablethat match the given predicate.booleanC8Iterable. noneMatch(Predicate<? super T> predicate)Returns whether no elements of thisArangoIterablematch the provided predicate. -
Uses of Predicate in com.c8db.internal.cursor
Methods in com.c8db.internal.cursor with parameters of type Predicate Modifier and Type Method Description booleanAbstractC8Iterable. allMatch(Predicate<? super T> predicate)booleanAbstractC8Iterable. anyMatch(Predicate<? super T> predicate)C8Iterable<T>AbstractC8Iterable. filter(Predicate<? super T> predicate)booleanAbstractC8Iterable. noneMatch(Predicate<? super T> predicate)Constructors in com.c8db.internal.cursor with parameters of type Predicate Constructor Description C8FilterIterable(C8Iterable<T> iterable, Predicate<? super T> predicate)C8FilterIterator(C8Iterator<T> iterator, Predicate<? super T> predicate)
-