Package org.eclipse.equinox.p2.query


package org.eclipse.equinox.p2.query
Provides common classes for the query mechanism.

Package Specification

This package provide low level infrastructure for querying collections of metadata. Additional queries can be found in the org.eclipse.equinox.p2.metadata.query package and more domain specific queries can be found in the touchpoints.

Since:
2.0
  • Class
    Description
    This class allows to adapt java collections to a p2 a query result and as such something queryable
    A collector is a generic visitor that collects objects passed to it, and can then express the result of the visit in various forms.
    A queryable that holds a number of other IQueryables and provides a mechanism for querying the entire set.
    A query that matches candidates against an expression.
    A query that evaluates using an iterator as input and produces a new iterator.
    Deprecated.
    If possible, use one of the predefined queries in QueryUtil or use the QueryUtil.createMatchQuery(String, Object...) to create a custom expression based query.
    The root interface for all queries that can be performed on an IQueryable.
    An IQueryable contains objects, and is able to perform queries on those objects.
    An IQueryResult represents the results of a query.
    Deprecated.
    If possible, use one of the predefined queries in QueryUtil or use the QueryUtil.createMatchQuery(String, Object...) to create a custom expression based query.
    Helper class for query related tasks.