Package org.eclipse.m2m.atl.emftvm.util
Class LazyCollection.RejectIterator
java.lang.Object
org.eclipse.m2m.atl.emftvm.util.LazyCollection.ReadOnlyIterator<E>
LazyCollection<E>.org.eclipse.m2m.atl.emftvm.util.LazyCollection.CachingIterator
LazyCollection<E>.org.eclipse.m2m.atl.emftvm.util.LazyCollection.FilterIterator
org.eclipse.m2m.atl.emftvm.util.LazyCollection.RejectIterator
- All Implemented Interfaces:
Iterator<E>
- Enclosing class:
LazyCollection<E>
LazyCollection<E>.FilterIterator that rejects elements from the underlying
collection by evaluation a condition function on them.-
Field Summary
Fields inherited from class org.eclipse.m2m.atl.emftvm.util.LazyCollection.FilterIterator
condition, next, nextIncluded, nextSet, parentFrameFields inherited from class org.eclipse.m2m.atl.emftvm.util.LazyCollection.CachingIterator
i, inner -
Constructor Summary
ConstructorsConstructorDescriptionRejectIterator(CodeBlock condition, StackFrame parentFrame) Creates aLazyCollection<E>.RejectIteratorwithcondition. -
Method Summary
Methods inherited from class org.eclipse.m2m.atl.emftvm.util.LazyCollection.FilterIterator
hasNext, nextMethods inherited from class org.eclipse.m2m.atl.emftvm.util.LazyCollection.CachingIterator
updateCacheMethods inherited from class org.eclipse.m2m.atl.emftvm.util.LazyCollection.ReadOnlyIterator
removeMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.Iterator
forEachRemaining
-
Constructor Details
-
RejectIterator
Creates aLazyCollection<E>.RejectIteratorwithcondition.- Parameters:
condition- the condition functionparentFrame- the parent stack frame context
-
-
Method Details
-
include
Checks whether to includeelement
.- Specified by:
includein classLazyCollection<E>.FilterIterator- Parameters:
element- the element to filter- Returns:
trueiffelementshould be included in this collection
-