public static class

Query.Builder

extends Object
java.lang.Object
   ↳ com.google.android.gms.drive.query.Query.Builder

Class Overview

A builder for creating queries.

Summary

Public Constructors
Query.Builder()
Query.Builder(Query query)
Creates a new builder with initial values from an existing query.
Public Methods
Query.Builder addFilter(Filter filter)
Adds a search filter to the query.
Query build()
Query.Builder setPageToken(String token)
Set the page token to retrieve the next page of results.
Query.Builder setSortOrder(SortOrder sortOrder)
Sets the SortOrder to be used to sort the query results.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public Query.Builder ()

public Query.Builder (Query query)

Creates a new builder with initial values from an existing query.

Public Methods

public Query.Builder addFilter (Filter filter)

Adds a search filter to the query. If more than one filter is added, they are combined with a logical AND. Skips MatchAllFilter.

See Also

public Query build ()

public Query.Builder setPageToken (String token)

Set the page token to retrieve the next page of results.

public Query.Builder setSortOrder (SortOrder sortOrder)

Sets the SortOrder to be used to sort the query results. Use SortOrder.Builder to build the sort order as required. Multiple calls to this method resets the sort order set in previous calls.

Parameters
sortOrder the order to be used to sort the query results