Package | Description |
---|---|
com.arangodb | |
com.arangodb.internal.cursor |
Modifier and Type | Method and Description |
---|---|
boolean |
ArangoIterable.allMatch(Predicate<? super T> predicate)
Returns whether all elements of this
ArangoIterable match the provided predicate. |
boolean |
ArangoIterable.anyMatch(Predicate<? super T> predicate)
Returns whether any elements of this
ArangoIterable match the provided predicate. |
ArangoIterable<T> |
ArangoIterable.filter(Predicate<? super T> predicate)
Returns a
ArangoIterable consisting of the elements of this ArangoIterable that match the given
predicate. |
boolean |
ArangoIterable.noneMatch(Predicate<? super T> predicate)
Returns whether no elements of this
ArangoIterable match the provided predicate. |
Modifier and Type | Method and Description |
---|---|
boolean |
AbstractArangoIterable.allMatch(Predicate<? super T> predicate) |
boolean |
AbstractArangoIterable.anyMatch(Predicate<? super T> predicate) |
ArangoIterable<T> |
AbstractArangoIterable.filter(Predicate<? super T> predicate) |
boolean |
AbstractArangoIterable.noneMatch(Predicate<? super T> predicate) |
Constructor and Description |
---|
ArangoFilterIterable(ArangoIterable<T> iterable,
Predicate<? super T> predicate) |
ArangoFilterIterator(ArangoIterator<T> iterator,
Predicate<? super T> predicate) |
Copyright © 2016–2021 ArangoDB GmbH. All rights reserved.