Interface BoxClient

All Known Implementing Classes:
AbstractHttpBoxClient, HttpBoxClient

public interface BoxClient
A client for interacting with a Box server.
Author:
Charles Draper
  • Method Details

    • 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

      Returns documents found according to the given query in the form of an Iterable.
      Parameters:
      query - the query
      Returns:
      the results