Interface BoxClient

    • Method Detail

      • collect

        default QueryResult collect​(BoxQuery query)
        Collects and returns all documents found according to the given query.
        Parameters:
        query - the query
        Returns:
        the results
      • stream

        default Stream<BoxDocument> stream​(BoxQuery query)
        Returns documents found according to the given query in the form of a Stream.
        Parameters:
        query - the query
        Returns:
        the results
      • find

        Iterable<BoxDocument> find​(BoxQuery query)
        Returns documents found according to the given query in the form of an Iterable.
        Parameters:
        query - the query
        Returns:
        the results