Package org.eclipse.m2m.atl.emftvm.util
Class LazyList.AppendList<E>
java.lang.Object
org.eclipse.m2m.atl.emftvm.util.LazyCollection<E>
org.eclipse.m2m.atl.emftvm.util.LazyList<E>
org.eclipse.m2m.atl.emftvm.util.LazyList.NonCachingList<E>
org.eclipse.m2m.atl.emftvm.util.LazyList.AppendList<E>
- Type Parameters:
E- The list element type.
- All Implemented Interfaces:
Iterable<E>,Collection<E>,List<E>,SequencedCollection<E>,org.eclipse.emf.common.util.EList<E>
- Direct Known Subclasses:
LazyList.InsertAtList,LazyList.PrependList
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionclassListIteratorthat appends an object to the underlying collection.Nested classes/interfaces inherited from class org.eclipse.m2m.atl.emftvm.util.LazyList
LazyList.AppendList<E>, LazyList.CollectList<E>, LazyList.InsertAtList<E>, LazyList.IntegerRangeList, LazyList.LongRangeList, LazyList.NonCachingList<E>, LazyList.PrependList<E>, LazyList.ReverseList<E>, LazyList.SubList<E>, LazyList.UnionList<E>, LazyList.UnionListIteratorNested classes/interfaces inherited from class org.eclipse.m2m.atl.emftvm.util.LazyCollection
LazyCollection.AppendIterator, LazyCollection.CachingIterator, LazyCollection.CachingSetIterator, LazyCollection.CollectIterator<T>, LazyCollection.ExcludingIterator, LazyCollection.FilterIterator, LazyCollection.FlattenIterator, LazyCollection.FlattenSetIterator, LazyCollection.IntegerRangeListIterator, LazyCollection.IntersectionIterator, LazyCollection.IteratorToListIterator, LazyCollection.LongRangeListIterator, LazyCollection.ReadOnlyIterator<E>, LazyCollection.ReadOnlyListIterator<E>, LazyCollection.RejectIterator, LazyCollection.ReverseIterator, LazyCollection.ReverseListIterator, LazyCollection.SelectIterator, LazyCollection.SubListIterator, LazyCollection.SubListListIterator, LazyCollection.SubtractionIterator, LazyCollection.UnionIterator, LazyCollection.UnionSetIterator, LazyCollection.WrappedIterator, LazyCollection.WrappedListIterator -
Field Summary
FieldsFields inherited from class org.eclipse.m2m.atl.emftvm.util.LazyCollection
cache, dataSource, occurrences -
Constructor Summary
ConstructorsConstructorDescriptionAppendList(E object, LazyList<E> dataSource) Creates a newLazyList.AppendList. -
Method Summary
Modifier and TypeMethodDescriptionbooleanintReturns the number of times thatobjectoccurs in the collection self.first()Returns the first element in self.get(int index) protected intReturns the number of chainedLazyList.AppendListinstances.Returns the first non-LazyList.AppendListinstance on the chain ofLazyList.AppendListinstances.Returns the flattenedLazyListof chainedLazyList.AppendListinstances appended to the first non-LazyList.AppendListinstance.intbooleanisEmpty()iterator()last()Returns the last element in self.intlistIterator(int index) intsize()Methods inherited from class org.eclipse.m2m.atl.emftvm.util.LazyList.NonCachingList
createCacheMethods inherited from class org.eclipse.m2m.atl.emftvm.util.LazyList
add, addAll, append, asSequence, asString, at, collect, equals, excluding, excludingAll, flatten, hashCode, including, including, includingAll, includingAll, includingRange, indexOf2, insertAt, lastIndexOf2, move, move, prepend, reject, remove, reverse, select, set, sortedBy, subList, subSequence, union, unionMethods inherited from class org.eclipse.m2m.atl.emftvm.util.LazyCollection
add, addAll, any, appendElements, asBag, asOrderedSet, asSet, clear, containsAll, containsAny, excludes, excludesAll, exists, exists2, forAll, forAll2, includes, includesAll, isUnique, iterate, mappedBy, mappedBySingle, max, min, notEmpty, one, product, remove, removeAll, retainAll, sum, toArray, toArray, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArrayMethods inherited from interface java.util.List
add, addAll, addFirst, addLast, clear, containsAll, getFirst, getLast, remove, removeAll, removeFirst, removeLast, replaceAll, retainAll, reversed, sort, spliterator, toArray, toArray
-
Field Details
-
object
The element to append.
-
-
Constructor Details
-
AppendList
Creates a newLazyList.AppendList.- Parameters:
object- the element to appenddataSource- the underlyingLazyList
-
-
Method Details
-
first
Returns the first element in self. -
last
Returns the last element in self. -
get
-
indexOf
-
lastIndexOf
- Specified by:
lastIndexOfin interfaceList<E>- Overrides:
lastIndexOfin classLazyList<E>
-
contains
- Specified by:
containsin interfaceCollection<E>- Specified by:
containsin interfaceList<E>- Overrides:
containsin classLazyCollection<E>
-
count
Returns the number of times thatobjectoccurs in the collection self.- Overrides:
countin classLazyCollection<E>- Parameters:
o- the object to check for- Returns:
- The number of times that
objectoccurs in the collection self.
-
isEmpty
public boolean isEmpty()- Specified by:
isEmptyin interfaceCollection<E>- Specified by:
isEmptyin interfaceList<E>- Overrides:
isEmptyin classLazyCollection<E>
-
iterator
-
size
public int size()- Specified by:
sizein interfaceCollection<E>- Specified by:
sizein interfaceList<E>- Overrides:
sizein classLazyCollection<E>
-
listIterator
- Specified by:
listIteratorin interfaceList<E>- Overrides:
listIteratorin classLazyList<E>
-
listIterator
- Specified by:
listIteratorin interfaceList<E>- Overrides:
listIteratorin classLazyList<E>
-
getAppendedSize
protected int getAppendedSize()Returns the number of chainedLazyList.AppendListinstances.- Returns:
- the number of chained
LazyList.AppendListinstances
-
getfirstNonAppendDatasource
Returns the first non-LazyList.AppendListinstance on the chain ofLazyList.AppendListinstances.- Returns:
- the first non-
LazyList.AppendListinstance on the chain ofLazyList.AppendListinstances
-
getFlattenedAppendList
Returns the flattenedLazyListof chainedLazyList.AppendListinstances appended to the first non-LazyList.AppendListinstance.- Returns:
- the flattenedAppendList
-