Package | Description |
---|---|
com.arangodb | |
com.arangodb.internal.cursor |
Modifier and Type | Interface and Description |
---|---|
interface |
ArangoCursor<T> |
Modifier and Type | Method and Description |
---|---|
ArangoIterable<T> |
ArangoIterable.filter(Predicate<? super T> predicate)
Returns a
ArangoIterable consisting of the elements of this ArangoIterable that match the given
predicate. |
<R> ArangoIterable<R> |
ArangoIterable.map(Function<? super T,? extends R> mapper)
Returns a
ArangoIterable consisting of the results of applying the given function to the elements of this
ArangoIterable . |
Modifier and Type | Class and Description |
---|---|
class |
AbstractArangoIterable<T> |
class |
ArangoCursorImpl<T> |
class |
ArangoFilterIterable<T> |
class |
ArangoMappingIterable<R,T> |
Modifier and Type | Method and Description |
---|---|
ArangoIterable<T> |
AbstractArangoIterable.filter(Predicate<? super T> predicate) |
<R> ArangoIterable<R> |
AbstractArangoIterable.map(Function<? super T,? extends R> mapper) |
Constructor and Description |
---|
ArangoFilterIterable(ArangoIterable<T> iterable,
Predicate<? super T> predicate) |
ArangoMappingIterable(ArangoIterable<R> iterable,
Function<? super R,? extends T> mapper) |
Copyright © 2016–2021 ArangoDB GmbH. All rights reserved.