Package org.eclipse.equinox.p2.query
Class Collector<T>
java.lang.Object
org.eclipse.equinox.p2.query.Collector<T>
- Type Parameters:
T
- The type of object accepted by this collector
- All Implemented Interfaces:
Iterable<T>
,IQueryable<T>
,IQueryResult<T>
A collector is a generic visitor that collects objects passed to it, and can
then express the result of the visit in various forms. The collector can also
short-circuit a traversal by returning
false
from its
accept(Object)
method.
This default collector just accepts all objects passed to it. Clients may subclass to perform different processing on the objects passed to it.
- Since:
- 2.0
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Accepts an object.void
addAll
(IQueryResult<T> queryResult) Adds the elements from one collector to this collectorstatic final <T> Collector<T>
protected Collection<T>
Returns the collection that is being used to collect results.boolean
isEmpty()
Returns whether this collector is empty.iterator()
Returns an iterator on the collected objects.query
(IQuery<T> query, IProgressMonitor monitor) Performs a query on this results of this collector.int
size()
Returns the number of collected objects.T[]
Returns the collected objects as an arraytoSet()
Returns a copy of the collected objects.Returns the collected objects as an immutable collection.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Field Details
-
EMPTY_COLLECTOR
-
-
Constructor Details
-
Collector
public Collector()Creates a new collector.
-
-
Method Details
-
emptyCollector
-
accept
Accepts an object.This default implementation adds the objects to a list. Clients may override this method to perform additional filtering, add different objects to the list, short-circuit the traversal, or process the objects directly without collecting them.
- Parameters:
object
- the object to collect or visit- Returns:
true
if the traversal should continue, orfalse
to indicate the traversal should stop.
-
addAll
Adds the elements from one collector to this collector- Parameters:
queryResult
- The collector from which the elements should be retrieved
-
getCollection
Returns the collection that is being used to collect results. Unlike toSet(), this returns the actual modifiable collection that is being used to store results. The return value is only intended to be used within subclasses and should not be exposed outside of a collection class.- Returns:
- the collection being used to collect results.
-
isEmpty
public boolean isEmpty()Returns whether this collector is empty.- Specified by:
isEmpty
in interfaceIQueryResult<T>
- Returns:
true
if this collector has accepted any results, andfalse
otherwise.
-
iterator
Returns an iterator on the collected objects. -
size
public int size()Returns the number of collected objects. -
toArray
Returns the collected objects as an array- Specified by:
toArray
in interfaceIQueryResult<T>
- Parameters:
clazz
- The type of array to return- Returns:
- The array of results
- Throws:
ArrayStoreException
- the runtime type of the specified array is not a super-type of the runtime type of every collected object
-
toSet
Returns a copy of the collected objects.- Specified by:
toSet
in interfaceIQueryResult<T>
- Returns:
- An unmodifiable collection of the collected objects
-
query
Performs a query on this results of this collector.- Specified by:
query
in interfaceIQueryable<T>
- Parameters:
query
- The query to performmonitor
- a progress monitor, ornull
if progress reporting is not desired- Returns:
- The collector argument
-
toUnmodifiableSet
Returns the collected objects as an immutable collection.- Specified by:
toUnmodifiableSet
in interfaceIQueryResult<T>
- Returns:
- An unmodifiable collection of the collected objects
-