protected static class

BaseFeed.FeedState

extends Object
java.lang.Object
   ↳ com.google.gdata.data.BaseFeed.FeedState

Class Overview

The FeedState class provides a simple structure that encapsulates the attributes of an Atom feed that should be shared with a shallow copy if the feed is adapted to a more specific BaseFeed Kind.Adaptor subtypes.

Note: Feed entries are not part of feed shared state, because the entry lists will need to be typed differently for adapted instances. This means that entries that are created, updated, or deleted in an adapted feed will not be reflected in the base feed used to construct it. The reverse is also true: changes made to a base feed will not be reflected in any adapted instances of the feed.

Summary

Fields
public Kind.Adaptable adaptable Adaptable helper
public boolean canPost Specifies whether the feed can be posted to.
public String etag Etag.
public String fields gd:fields.
public int itemsPerPage OpenSearch: items per page.
public String kind gd:kind.
public Service service Service associated with the feed.
public int startIndex OpenSearch: start index.
public int totalResults OpenSearch: number of search results (feed entries).
public String versionId Resource version id to use when generating etag.
Protected Constructors
BaseFeed.FeedState()
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public Kind.Adaptable adaptable

Adaptable helper

public boolean canPost

Specifies whether the feed can be posted to.

public String etag

Etag. Etag. See RFC 2616, Section 3.11. If there is no entity tag, this variable is null.

public String fields

gd:fields. This is the field selection associated with this feed. If fields attribute is present, the feed is a partial feed.

public int itemsPerPage

OpenSearch: items per page.

public String kind

gd:kind. This is the kind attribute for this entry.

public Service service

Service associated with the feed.

public int startIndex

OpenSearch: start index.

public int totalResults

OpenSearch: number of search results (feed entries).

public String versionId

Resource version id to use when generating etag.

Protected Constructors

protected BaseFeed.FeedState ()