Class DocumentModelCollector
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<E>
-
- java.util.ArrayList<DocumentModel>
-
- org.nuxeo.ecm.automation.core.collectors.DocumentModelCollector
-
- All Implemented Interfaces:
Serializable,Cloneable,Iterable<DocumentModel>,Collection<DocumentModel>,List<DocumentModel>,RandomAccess,OutputCollector<DocumentModel,DocumentModelList>,DocumentModelList
public class DocumentModelCollector extends ArrayList<DocumentModel> implements DocumentModelList, OutputCollector<DocumentModel,DocumentModelList>
This implementation collectDocumentModelobjects and return them as aDocumentModelListobject.You may use this to automatically iterate over iterable inputs in operation methods that return a
DocumentModelobject- Author:
- Bogdan Stefanescu
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.AbstractList
modCount
-
-
Constructor Summary
Constructors Constructor Description DocumentModelCollector()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcollect(OperationContext ctx, DocumentModel obj)Collects a new partial result (the result of the last iteration step).DocumentModelListgetOutput()Gets the final output.longtotalSize()Returns the total size of the bigger list this is a part of.-
Methods inherited from class java.util.ArrayList
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, equals, forEach, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
-
Methods inherited from class java.util.AbstractCollection
containsAll, toString
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
-
-
-
Constructor Detail
-
DocumentModelCollector
public DocumentModelCollector()
-
-
Method Detail
-
totalSize
public long totalSize()
Description copied from interface:DocumentModelListReturns the total size of the bigger list this is a part of.- Specified by:
totalSizein interfaceDocumentModelList- Returns:
- the total size
-
collect
public void collect(OperationContext ctx, DocumentModel obj) throws OperationException
Description copied from interface:OutputCollectorCollects a new partial result (the result of the last iteration step).- Specified by:
collectin interfaceOutputCollector<DocumentModel,DocumentModelList>- Throws:
OperationException
-
getOutput
public DocumentModelList getOutput()
Description copied from interface:OutputCollectorGets the final output. This is usually a list or set of collected objects.- Specified by:
getOutputin interfaceOutputCollector<DocumentModel,DocumentModelList>
-
-