| Package | Description |
|---|---|
| org.neo4j.collection.primitive | |
| org.neo4j.collection.primitive.base | |
| org.neo4j.collection.primitive.hopscotch |
| Modifier and Type | Class and Description |
|---|---|
static class |
PrimitiveIntCollections.PrimitiveIntBaseIterator
Base iterator for simpler implementations of
PrimitiveIntIterators. |
static class |
PrimitiveIntCollections.PrimitiveIntConcatingIterator |
static class |
PrimitiveIntCollections.PrimitiveIntFilteringIterator |
static class |
PrimitiveIntCollections.PrimitiveIntInterleavingIterator |
static class |
PrimitiveIntCollections.PrimitiveIntRangeIterator |
| Modifier and Type | Method and Description |
|---|---|
static PrimitiveIntIterator |
PrimitiveIntCollections.append(PrimitiveIntIterator iterator,
int item) |
static PrimitiveIntIterator |
PrimitiveIntCollections.concat(Iterator<PrimitiveIntIterator> iterators) |
static PrimitiveIntIterator |
PrimitiveIntCollections.constant(int value) |
static PrimitiveIntIterator |
PrimitiveIntCollections.deduplicate(PrimitiveIntIterator source) |
static PrimitiveIntIterator |
PrimitiveIntCollections.emptyIterator() |
static PrimitiveIntIterator |
PrimitiveIntCollections.filter(PrimitiveIntIterator source,
IntPredicate filter) |
static PrimitiveIntIterator |
PrimitiveIntCollections.flatten(Iterator<PrimitiveIntIterator> source) |
PrimitiveIntIterator |
PrimitiveIntStack.iterator() |
PrimitiveIntIterator |
PrimitiveIntIterable.iterator() |
static PrimitiveIntIterator |
PrimitiveIntCollections.iterator(int... items) |
static PrimitiveIntIterator |
PrimitiveIntCollections.limit(PrimitiveIntIterator source,
int maxItems) |
static PrimitiveIntIterator |
PrimitiveIntCollections.not(PrimitiveIntIterator source,
int disallowedValue) |
static PrimitiveIntIterator |
PrimitiveIntCollections.prepend(int item,
PrimitiveIntIterator iterator) |
static PrimitiveIntIterator |
PrimitiveIntCollections.range(int end) |
static PrimitiveIntIterator |
PrimitiveIntCollections.range(int start,
int end) |
static PrimitiveIntIterator |
PrimitiveIntCollections.range(int start,
int end,
int stride) |
static PrimitiveIntIterator |
PrimitiveIntCollections.reversed(int... items) |
static PrimitiveIntIterator |
PrimitiveIntCollections.reversed(PrimitiveIntIterator source) |
static PrimitiveIntIterator |
PrimitiveIntCollections.singleton(int item) |
static PrimitiveIntIterator |
PrimitiveIntCollections.skip(PrimitiveIntIterator source,
int skipTheFirstNItems) |
static PrimitiveIntIterator |
PrimitiveIntCollections.toPrimitiveIterator(Iterator<Integer> iterator) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
PrimitiveIntSet.addAll(PrimitiveIntIterator values) |
static PrimitiveIntIterator |
PrimitiveIntCollections.append(PrimitiveIntIterator iterator,
int item) |
static int[] |
PrimitiveIntCollections.asArray(PrimitiveIntIterator iterator) |
static PrimitiveIntSet |
PrimitiveIntCollections.asSet(PrimitiveIntIterator iterator) |
static PrimitiveIntSet |
PrimitiveIntCollections.asSetAllowDuplicates(PrimitiveIntIterator iterator) |
static void |
PrimitiveIntCollections.consume(PrimitiveIntIterator source,
IntConsumer consumer) |
static int |
PrimitiveIntCollections.count(PrimitiveIntIterator iterator) |
static PrimitiveIntIterator |
PrimitiveIntCollections.deduplicate(PrimitiveIntIterator source) |
static boolean |
PrimitiveIntCollections.equals(PrimitiveIntIterator first,
PrimitiveIntIterator other)
Validates whether two
Iterators are equal or not, i.e. |
static PrimitiveIntIterator |
PrimitiveIntCollections.filter(PrimitiveIntIterator source,
IntPredicate filter) |
static int |
PrimitiveIntCollections.first(PrimitiveIntIterator iterator) |
static int |
PrimitiveIntCollections.first(PrimitiveIntIterator iterator,
int defaultItem) |
static int |
PrimitiveIntCollections.indexOf(PrimitiveIntIterator iterator,
int item)
Returns the index of the given item in the iterator(zero-based).
|
static int |
PrimitiveIntCollections.itemAt(PrimitiveIntIterator iterator,
int index) |
static int |
PrimitiveIntCollections.itemAt(PrimitiveIntIterator iterator,
int index,
int defaultItem) |
static int |
PrimitiveIntCollections.last(PrimitiveIntIterator iterator) |
static int |
PrimitiveIntCollections.last(PrimitiveIntIterator iterator,
int defaultItem) |
static PrimitiveIntIterator |
PrimitiveIntCollections.limit(PrimitiveIntIterator source,
int maxItems) |
static <T> Iterator<T> |
PrimitiveIntCollections.map(IntFunction<T> mapFunction,
PrimitiveIntIterator source) |
static <T> Set<T> |
PrimitiveIntCollections.mapToSet(PrimitiveIntIterator iterator,
IntFunction<T> map) |
static PrimitiveIntIterator |
PrimitiveIntCollections.not(PrimitiveIntIterator source,
int disallowedValue) |
static PrimitiveIntIterator |
PrimitiveIntCollections.prepend(int item,
PrimitiveIntIterator iterator) |
static PrimitiveIntIterator |
PrimitiveIntCollections.reversed(PrimitiveIntIterator source) |
static int |
PrimitiveIntCollections.single(PrimitiveIntIterator iterator) |
static int |
PrimitiveIntCollections.single(PrimitiveIntIterator iterator,
int defaultItem) |
static PrimitiveIntIterator |
PrimitiveIntCollections.skip(PrimitiveIntIterator source,
int skipTheFirstNItems) |
static List<Integer> |
PrimitiveIntCollections.toList(PrimitiveIntIterator iterator)
Pulls all items from the
iterator and puts them into a List, boxing each int. |
static Set<Integer> |
PrimitiveIntCollections.toSet(PrimitiveIntIterator iterator)
Pulls all items from the
iterator and puts them into a Set, boxing each int. |
| Modifier and Type | Method and Description |
|---|---|
static PrimitiveIntIterator |
PrimitiveIntCollections.concat(Iterator<PrimitiveIntIterator> iterators) |
static PrimitiveIntIterator |
PrimitiveIntCollections.flatten(Iterator<PrimitiveIntIterator> source) |
| Constructor and Description |
|---|
PrimitiveIntFilteringIterator(PrimitiveIntIterator source) |
| Constructor and Description |
|---|
PrimitiveIntConcatingIterator(Iterator<PrimitiveIntIterator> iterators) |
PrimitiveIntInterleavingIterator(Iterable<PrimitiveIntIterator> iterators) |
| Modifier and Type | Method and Description |
|---|---|
PrimitiveIntIterator |
Empty.EmptyPrimitiveIntCollection.iterator() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
Empty.EmptyPrimitiveIntSet.addAll(PrimitiveIntIterator values) |
| Modifier and Type | Method and Description |
|---|---|
PrimitiveIntIterator |
AbstractIntHopScotchCollection.iterator() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
PrimitiveIntHashSet.addAll(PrimitiveIntIterator values) |
Copyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.