Interface Query<T>

    • Method Detail

      • query

        Iterable<T> query()
        Returns the result of the query.
        Returns:
        an iterable over the objects that are the result of the query.
      • query

        Iterable<T> query​(Iterable<T> set)
        Returns an iterable over the objects that are the result of the query and are in the passed in iterable. This allows queries to be chained together where the result of one query is passed into another.
        Parameters:
        set -
        Returns:
        an iterable over the objects that are the result of the query and are in the passed in iterable.