Package org.eclipse.m2m.atl.emftvm.util
Class LazyList.UnionListIterator
java.lang.Object
- All Implemented Interfaces:
Iterator<E>
,ListIterator<E>
ListIterator
that returns first the elements of the underlying collection, then the elements of the other collection.-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected ListIterator<? extends E>
protected boolean
protected boolean
Fields inherited from class org.eclipse.m2m.atl.emftvm.util.LazyCollection.WrappedListIterator
inner
-
Constructor Summary
ConstructorsConstructorDescriptionUnionListIterator
(List<? extends E> s) Creates a newLazyList<E>.UnionListIterator
for the underlying collection ands
.UnionListIterator
(List<? extends E> s, int index) Creates a newLazyList<E>.UnionListIterator
for the underlying collection ands
. -
Method Summary
Methods inherited from class org.eclipse.m2m.atl.emftvm.util.LazyCollection.ReadOnlyListIterator
add, set
Methods inherited from class org.eclipse.m2m.atl.emftvm.util.LazyCollection.ReadOnlyIterator
remove
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Iterator
forEachRemaining
Methods inherited from interface java.util.ListIterator
remove
-
Field Details
-
s
-
added
-
innerNext
protected boolean innerNext -
addedPrev
protected boolean addedPrev
-
-
Constructor Details
-
UnionListIterator
Creates a newLazyList<E>.UnionListIterator
for the underlying collection ands
.- Parameters:
s
- the collection to union
-
UnionListIterator
Creates a newLazyList<E>.UnionListIterator
for the underlying collection ands
.- Parameters:
s
- the collection to unionindex
- the iterator starting index.
-
-
Method Details
-
hasNext
public boolean hasNext()- Specified by:
hasNext
in interfaceIterator<E>
- Specified by:
hasNext
in interfaceListIterator<E>
- Overrides:
hasNext
in classLazyCollection<E>.WrappedListIterator
-
next
- Specified by:
next
in interfaceIterator<E>
- Specified by:
next
in interfaceListIterator<E>
- Overrides:
next
in classLazyCollection<E>.WrappedListIterator
-
nextIndex
public int nextIndex()- Specified by:
nextIndex
in interfaceListIterator<E>
- Overrides:
nextIndex
in classLazyCollection<E>.WrappedListIterator
-
hasPrevious
public boolean hasPrevious()- Specified by:
hasPrevious
in interfaceListIterator<E>
- Overrides:
hasPrevious
in classLazyCollection<E>.WrappedListIterator
-
previous
- Specified by:
previous
in interfaceListIterator<E>
- Overrides:
previous
in classLazyCollection<E>.WrappedListIterator
-
previousIndex
public int previousIndex()- Specified by:
previousIndex
in interfaceListIterator<E>
- Overrides:
previousIndex
in classLazyCollection<E>.WrappedListIterator
-