public class

BlogPostQuery

extends Query
java.lang.Object
   ↳ com.google.gdata.client.Query
     ↳ com.google.gdata.client.blogger.BlogPostQuery

Class Overview

Describes a query for the feed of a blog's posts.

Summary

Nested Classes
enum BlogPostQuery.OrderBy Order of entries in a feed. 
[Expand]
Inherited Constants
From class com.google.gdata.client.Query
Fields
private BlogPostQuery.OrderBy orderBy Order of entries in a feed.
[Expand]
Inherited Fields
From class com.google.gdata.client.Query
Public Constructors
BlogPostQuery(URL feedUrl)
Constructs a new query object that targets a feed.
Public Methods
BlogPostQuery.OrderBy getOrderBy()
Returns the order of entries in a feed.
void setOrderBy(BlogPostQuery.OrderBy orderBy)
Sets the order of entries in a feed.
[Expand]
Inherited Methods
From class com.google.gdata.client.Query
From class java.lang.Object

Fields

private BlogPostQuery.OrderBy orderBy

Order of entries in a feed.

Public Constructors

public BlogPostQuery (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 BlogPostQuery.OrderBy getOrderBy ()

Returns the order of entries in a feed.

Returns
  • order of entries in a feed.

public void setOrderBy (BlogPostQuery.OrderBy orderBy)

Sets the order of entries in a feed.

Parameters
orderBy Order of entries in a feed or null to reset this parameter to default value PUBLISHED.