public class

TableQuery

extends Query
java.lang.Object
   ↳ com.google.gdata.client.Query
     ↳ com.google.gdata.client.spreadsheet.TableQuery

Class Overview

Describes a query for the feed of table definitions.

Summary

[Expand]
Inherited Constants
From class com.google.gdata.client.Query
Fields
private Boolean titleExact Whether the title query should be taken as an exact string.
private String titleQuery Search terms for the title of a document.
[Expand]
Inherited Fields
From class com.google.gdata.client.Query
Public Constructors
TableQuery(URL feedUrl)
Constructs a new query object that targets a feed.
Public Methods
Boolean getTitleExact()
Returns the whether the title query should be taken as an exact string.
String getTitleQuery()
Returns the search terms for the title of a document.
void setTitleExact(Boolean titleExact)
Sets the whether the title query should be taken as an exact string.
void setTitleQuery(String titleQuery)
Sets the search terms for the title of a document.
[Expand]
Inherited Methods
From class com.google.gdata.client.Query
From class java.lang.Object

Fields

private Boolean titleExact

Whether the title query should be taken as an exact string.

private String titleQuery

Search terms for the title of a document.

Public Constructors

public TableQuery (URL feedUrl)

Constructs a new query object that targets a feed. The initial state of the query contains no parameters, meaning all entries in the feed would be returned if the query was executed immediately after construction.

Parameters
feedUrl The URL of the feed against which queries will be executed.

Public Methods

public Boolean getTitleExact ()

Returns the whether the title query should be taken as an exact string.

Returns
  • whether the title query should be taken as an exact string or null to indicate that the parameter is not set.

public String getTitleQuery ()

Returns the search terms for the title of a document.

Returns
  • search terms for the title of a document or null to indicate that the parameter is not set.

public void setTitleExact (Boolean titleExact)

Sets the whether the title query should be taken as an exact string.

Parameters
titleExact Whether the title query should be taken as an exact string or null to remove this parameter if set.

public void setTitleQuery (String titleQuery)

Sets the search terms for the title of a document.

Parameters
titleQuery Search terms for the title of a document or null to remove this parameter if set.