| Package | Description |
|---|---|
| org.neo4j.collection.primitive | |
| org.neo4j.collection.primitive.base | |
| org.neo4j.collection.primitive.hopscotch |
| Modifier and Type | Interface and Description |
|---|---|
interface |
PrimitiveLongResourceIterator |
| Modifier and Type | Class and Description |
|---|---|
static class |
PrimitiveLongCollections.PrimitiveLongBaseIterator
Base iterator for simpler implementations of
PrimitiveLongIterators. |
static class |
PrimitiveLongCollections.PrimitiveLongConcatingIterator |
static class |
PrimitiveLongCollections.PrimitiveLongFilteringIterator |
static class |
PrimitiveLongCollections.PrimitiveLongInterleavingIterator |
static class |
PrimitiveLongCollections.PrimitiveLongRangeIterator |
class |
PrimitiveLongPeekingIterator |
| Modifier and Type | Method and Description |
|---|---|
static PrimitiveLongIterator |
PrimitiveLongCollections.append(PrimitiveLongIterator iterator,
long item) |
static PrimitiveLongIterator |
PrimitiveLongCollections.concat(Iterable<PrimitiveLongIterator> primitiveLongIterators) |
static PrimitiveLongIterator |
PrimitiveLongCollections.concat(Iterator<PrimitiveLongIterator> iterators) |
static PrimitiveLongIterator |
PrimitiveLongCollections.constant(long value) |
static PrimitiveLongIterator |
PrimitiveLongCollections.deduplicate(PrimitiveLongIterator source) |
static PrimitiveLongIterator |
PrimitiveLongCollections.emptyIterator() |
static PrimitiveLongIterator |
PrimitiveLongCollections.filter(PrimitiveLongIterator source,
LongPredicate filter) |
PrimitiveLongIterator |
PrimitiveLongStack.iterator() |
PrimitiveLongIterator |
PrimitiveLongIterable.iterator() |
static PrimitiveLongIterator |
Primitive.iterator(long... longs) |
static PrimitiveLongIterator |
PrimitiveLongCollections.iterator(long... items) |
static PrimitiveLongIterator |
PrimitiveLongCollections.limit(PrimitiveLongIterator source,
int maxItems) |
static PrimitiveLongIterator |
PrimitiveLongCollections.not(PrimitiveLongIterator source,
long disallowedValue) |
static PrimitiveLongIterator |
PrimitiveLongCollections.prepend(long item,
PrimitiveLongIterator iterator) |
static PrimitiveLongIterator |
PrimitiveLongCollections.range(long end) |
static PrimitiveLongIterator |
PrimitiveLongCollections.range(long start,
long end) |
static PrimitiveLongIterator |
PrimitiveLongCollections.range(long start,
long end,
long stride) |
static PrimitiveLongIterator |
PrimitiveLongCollections.reversed(long... items) |
static PrimitiveLongIterator |
PrimitiveLongCollections.reversed(PrimitiveLongIterator source) |
static PrimitiveLongIterator |
PrimitiveLongCollections.singleton(long item) |
static PrimitiveLongIterator |
PrimitiveLongCollections.skip(PrimitiveLongIterator source,
int skipTheFirstNItems) |
static PrimitiveLongIterator |
PrimitiveLongCollections.toPrimitiveIterator(Iterator<Long> iterator) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
PrimitiveLongSet.addAll(PrimitiveLongIterator values) |
static <C extends Collection<Long>> |
PrimitiveLongCollections.addToCollection(PrimitiveLongIterator iterator,
C collection)
Adds all the items in
iterator to collection. |
static PrimitiveLongIterator |
PrimitiveLongCollections.append(PrimitiveLongIterator iterator,
long item) |
static long[] |
PrimitiveLongCollections.asArray(PrimitiveLongIterator iterator) |
static List<Long> |
PrimitiveLongCollections.asList(PrimitiveLongIterator iterator)
Pulls all items from the
iterator and puts them into a List, boxing each long. |
static PrimitiveLongSet |
PrimitiveLongCollections.asSet(PrimitiveLongIterator iterator) |
static PrimitiveLongSet |
PrimitiveLongCollections.asSetAllowDuplicates(PrimitiveLongIterator iterator) |
static int |
PrimitiveLongCollections.count(PrimitiveLongIterator iterator) |
static PrimitiveLongIterator |
PrimitiveLongCollections.deduplicate(PrimitiveLongIterator source) |
static boolean |
PrimitiveLongCollections.equals(PrimitiveLongIterator first,
PrimitiveLongIterator other)
Validates whether two
Iterators are equal or not, i.e. |
static PrimitiveLongIterator |
PrimitiveLongCollections.filter(PrimitiveLongIterator source,
LongPredicate filter) |
static long |
PrimitiveLongCollections.first(PrimitiveLongIterator iterator) |
static long |
PrimitiveLongCollections.first(PrimitiveLongIterator iterator,
long defaultItem) |
static int |
PrimitiveLongCollections.indexOf(PrimitiveLongIterator iterator,
long item)
Returns the index of the given item in the iterator(zero-based).
|
static long |
PrimitiveLongCollections.itemAt(PrimitiveLongIterator iterator,
int index) |
static long |
PrimitiveLongCollections.itemAt(PrimitiveLongIterator iterator,
int index,
long defaultItem) |
static long |
PrimitiveLongCollections.last(PrimitiveLongIterator iterator) |
static long |
PrimitiveLongCollections.last(PrimitiveLongIterator iterator,
long defaultItem) |
static PrimitiveLongIterator |
PrimitiveLongCollections.limit(PrimitiveLongIterator source,
int maxItems) |
static <T> Iterator<T> |
PrimitiveLongCollections.map(LongFunction<T> mapFunction,
PrimitiveLongIterator source) |
static PrimitiveLongIterator |
PrimitiveLongCollections.not(PrimitiveLongIterator source,
long disallowedValue) |
static PrimitiveLongIterator |
PrimitiveLongCollections.prepend(long item,
PrimitiveLongIterator iterator) |
static PrimitiveLongResourceIterator |
PrimitiveLongCollections.resourceIterator(PrimitiveLongIterator iterator,
org.neo4j.graphdb.Resource resource)
Wraps a
PrimitiveLongIterator in a PrimitiveLongResourceIterator which closes
the provided resource in Resource.close(). |
static PrimitiveLongIterator |
PrimitiveLongCollections.reversed(PrimitiveLongIterator source) |
static long |
PrimitiveLongCollections.single(PrimitiveLongIterator iterator) |
static long |
PrimitiveLongCollections.single(PrimitiveLongIterator iterator,
long defaultItem) |
static PrimitiveLongIterator |
PrimitiveLongCollections.skip(PrimitiveLongIterator source,
int skipTheFirstNItems) |
static Iterator<Long> |
PrimitiveLongCollections.toIterator(PrimitiveLongIterator primIterator) |
static Set<Long> |
PrimitiveLongCollections.toSet(PrimitiveLongIterator iterator)
Pulls all items from the
iterator and puts them into a Set, boxing each long. |
| Modifier and Type | Method and Description |
|---|---|
static PrimitiveLongIterator |
PrimitiveLongCollections.concat(Iterable<PrimitiveLongIterator> primitiveLongIterators) |
static PrimitiveLongIterator |
PrimitiveLongCollections.concat(Iterator<PrimitiveLongIterator> iterators) |
| Constructor and Description |
|---|
PrimitiveLongFilteringIterator(PrimitiveLongIterator source) |
PrimitiveLongPeekingIterator(PrimitiveLongIterator actual) |
| Constructor and Description |
|---|
PrimitiveLongConcatingIterator(Iterator<? extends PrimitiveLongIterator> iterators) |
PrimitiveLongInterleavingIterator(Iterable<PrimitiveLongIterator> iterators) |
| Modifier and Type | Method and Description |
|---|---|
PrimitiveLongIterator |
Empty.EmptyPrimitiveLongCollection.iterator() |
PrimitiveLongIterator |
Empty.EmptyPrimitiveLongObjectMap.iterator() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
Empty.EmptyPrimitiveLongSet.addAll(PrimitiveLongIterator values) |
| Modifier and Type | Class and Description |
|---|---|
class |
TableKeyIterator<VALUE> |
| Modifier and Type | Method and Description |
|---|---|
PrimitiveLongIterator |
AbstractLongHopScotchCollection.iterator() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
PrimitiveLongHashSet.addAll(PrimitiveLongIterator values) |
Copyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.