| Modifier and Type | Class and Description |
|---|---|
class |
AttributeHistogram
Histogram information for one attribute, described in
an entry using attributes in the gm: namespace.
|
class |
GmAttributes
Java representation for the gm:attributes tag for in the itemtypes feed.
|
class |
GmDisapproved
Object representation of the gm:disapproved tag.
|
class |
GmItemType
Java representation for the gm:item_type tag found in the item type feed.
|
class |
GmPublishingPriority
Object representation of the gm:publishing_priority tag.
|
class |
GoogleBaseAttributesExtension
Keeps track of attributes in the g: namespace.
|
class |
GoogleBaseEntry
An object corresponding to one entry in a Google Base Atom XML file.
|
class |
GoogleBaseFeed
An ATOM feed containing entries of type
GoogleBaseEntry. |
class |
GoogleBaseMediaEntry
Media entry representing a media attachment of a Google Base item.
|
class |
GoogleBaseMediaFeed
Media feed used for managing the media attachments for one Google Base Item.
|
class |
Stats
Object representation for the tag gm:stats.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ValidatingExtension
Extends the base
Extension interface to enable validation
of extension contents. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractExtension
Common extension implementation for sharing code among implementers of
Extension. |
class |
BaseEntry<E extends BaseEntry>
The BaseEntry class is an abstract base class that defines the
in-memory object model for GData entries.
|
class |
BaseFeed<F extends BaseFeed,E extends BaseEntry>
The BaseFeed class is an abstract base class that represents a
generic GData feed object, based primarily on the data model for
an
<atom:feed> element. |
class |
Entry
The Entry class customizes the BaseFeed class to represent the most
generic possible entry type.
|
class |
EnumConstruct
The EnumConstruct class defines a special type of
ValueConstruct
where the attribute values are constrained to a discrete set of valid
values. |
class |
ExtensionDescription
The ExtensionDescription class describes the attributes of an XML extension
type.
|
class |
ExtensionPoint
Base class for GData data types that support hosting extensions.
|
class |
Feed
The Feed class customizes the BaseFeed class to represent the most
generic possible feed type.
|
class |
Link
External link type.
|
class |
OpenSearchDescriptionDocument
OpenSearch description document.
|
class |
Person
Person type used for feed and entry authors and contributors.
|
class |
PubControl
Publication control tag app:control, which usually contains app:draft.
|
class |
Source
The Source class represents an Atom feed source object
primarily on the data model for an
<atom:source>
element. |
class |
ValueConstruct
The ValueConstruct class is an abstract Extension class that can
be used to subclassed to create a GData extension element with a
single value, like:
or
Using constructor parameters, a customized subclass has full
control over the value construct element namespace and tag name,
as well whether the value is contained within an XML attribute
or the element text value. |
| Modifier and Type | Field and Description |
|---|---|
protected Extension |
OtherContent.ext
Extension content.
|
| Modifier and Type | Method and Description |
|---|---|
protected static <T extends Extension> |
ExtensionPoint.createExtensionInstance(Class<T> extClass)
Creates an instance of the given extension class.
|
<T extends Extension> |
ExtensionPoint.getExtension(Class<T> extensionClass)
Retrieves a non-repeating extension or
null if not present. |
<T extends Extension> |
ExtensionPoint.getRepeatingExtension(Class<T> extensionClass)
Retrieves a repeating extension list (an empty list if not present).
|
<T extends Extension> |
ExtensionPoint.hasExtension(Class<T> extensionClass)
Returns whether the non-repeating extension is present.
|
<T extends Extension> |
ExtensionPoint.hasRepeatingExtension(Class<T> extensionClass)
Returns whether the repeating extension is present.
|
| Modifier and Type | Method and Description |
|---|---|
Extension |
OtherContent.getXmlContent()
Returns the nested xml content.
|
| Modifier and Type | Method and Description |
|---|---|
Class<? extends Extension> |
ExtensionDescription.getExtensionClass() |
Collection<Extension> |
ExtensionPoint.getExtensions()
Returns an unmodifiable collection of non-repeating extensions in this
ExtensionPoint.
|
Collection<List<Extension>> |
ExtensionPoint.getRepeatingExtensions()
Returns an unmodifiable collection of lists of repeating extensions in this
ExtensionPoint.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ExtensionPoint.addExtension(Extension ext)
Adds an extension object.
|
protected boolean |
ExtensionPoint.addExtension(Extension ext,
Class<? extends Extension> extClass)
Internal helper method.
|
void |
ExtensionPoint.addRepeatingExtension(Extension ext)
Adds a repeating extension object.
|
protected void |
ExtensionPoint.addRepeatingExtension(Extension ext,
Class<? extends Extension> extClass)
Internal helper method.
|
void |
ExtensionPoint.removeExtension(Extension ext)
Removes an extension object.
|
void |
ExtensionPoint.removeRepeatingExtension(Extension ext)
Removes a repeating extension object.
|
void |
ExtensionPoint.setExtension(Extension ext)
Sets an extension object.
|
void |
OtherContent.setXmlContent(Extension extension)
Sets the nested xml content.
|
boolean |
ExtensionVisitor.visit(ExtensionPoint parent,
Extension extension)
Called during ExtensionPoint tree traversal to allow the visitor instance
to process an extension in the tree.
|
protected void |
ExtensionPoint.visitChild(ExtensionVisitor ev,
Extension child)
Called to visit a child of this extension point.
|
| Modifier and Type | Method and Description |
|---|---|
protected boolean |
ExtensionPoint.addExtension(Extension ext,
Class<? extends Extension> extClass)
Internal helper method.
|
protected void |
ExtensionPoint.addRepeatingExtension(Extension ext,
Class<? extends Extension> extClass)
Internal helper method.
|
void |
ExtensionProfile.declare(Class<? extends ExtensionPoint> extendedType,
Class<? extends Extension> extClass)
Specifies that type
extendedType can contain an extension described
by extClass, as determined by
ExtensionDescription.getDefaultDescription(Class). |
void |
ExtensionProfile.declareEntryExtension(Class<? extends Extension> extClass)
Deprecated.
Calls to this API should be replaced with calls to
ExtensionProfile.declare(Class,ExtensionDescription) where
the first argument is a specific BaseEntry subtype. The
BaseEntry class should only be used for mix-in types that
might appear in multiple entry types. Its use for all entry declarations
can result in conflicts when mutiple feed types are declared into a
single extension profile, a common practice in client library service
initialization for services that return multiple entry types. |
void |
ExtensionProfile.declareFeedExtension(Class<? extends Extension> extClass)
Deprecated.
Calls to this API should be replaced with calls to
ExtensionProfile.declare(Class,ExtensionDescription) where
the first argument is a specific BaseFeed subtype. The
BaseFeed class should only be used for mix-in types that
might appear in multiple feed types. Its use for all feed declarations
can result in conflicts when mutiple feed types are declared into a
single extension profile, a common practice in client library service
initialization for services that return multiple feed types. |
static ExtensionDescription |
ExtensionDescription.getDefaultDescription(Class<? extends Extension> extensionClass)
Returns the default
ExtensionDescription for the specified
Extension class. |
void |
ExtensionPoint.removeExtension(Class<? extends Extension> extensionClass)
Removes an extension object based on its class.
|
void |
ExtensionDescription.setExtensionClass(Class<? extends Extension> extensionClass) |
| Constructor and Description |
|---|
ExtensionDescription(Class<? extends Extension> extensionClass,
XmlNamespace namespace,
String localName)
Constructs a new ExtensionDescription for an optional, non-repeating
simple element.
|
ExtensionDescription(Class<? extends Extension> extensionClass,
XmlNamespace namespace,
String localName,
boolean required,
boolean repeatable,
boolean aggregate)
Constructs a new ExtensionDescription populated with the parameter
values.
|
ExtensionDescription(Class<? extends Extension> extensionClass,
XmlNamespace namespace,
String localName,
boolean required,
boolean repeatable,
boolean aggregate,
boolean arbitraryXml,
boolean mixedContent)
Constructs a new ExtensionDescription populated with the parameter
values.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AclEntry
Defines an entry in a feed of an access control list (ACL).
|
class |
AclFeed
Defines a feed of an access control list (ACL).
|
class |
AclRole
Describes the role of an entry in an access control list.
|
class |
AclScope
Describes the scope of an entry in an access control list.
|
class |
AclWithKey
Describes the key granting a role in an access control list.
|
class |
AdditionalRole
Describes an additional role for an entry in an access control list.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbPageVariationEntry
Entry element for abpagevariation feed.
|
class |
AbPageVariationFeed
Feed element in AbPageVariationFeed.
|
class |
AccountEntry
Entry element for account feed.
|
class |
AccountFeed
Feed element in account feed.
|
class |
Aggregates
Describes an aggregates.
|
class |
AnalyticsLink
Extends the base Link class with Analytics extensions.
|
class |
CombinationEntry
Entry element for combination feed.
|
class |
CombinationFeed
Feed element in CombinationFeed.
|
class |
ContainsSampledData
Indicates whether this response contains sampled data.
|
class |
CustomVariable
Data about a user-defined custom variable.
|
class |
DataEntry
Entry element for data feed.
|
class |
DataFeed
Feed element in data feed.
|
class |
DataSource
Describes a data source.
|
class |
Definition
Describes a definition.
|
class |
Destination
Destination-URL goal.
|
class |
Dimension
Dimension value.
|
class |
EndDate
Last day for which to retrieve data.
|
class |
Engagement
Engagement goal.
|
class |
ExperimentEntry
Entry element for experiment feed.
|
class |
ExperimentFeed
Feed element in ExperimentFeed.
|
class |
Goal
Google Analytics goal.
|
class |
GwoAbPageVariationId
A/B experiment page variation ID.
|
class |
GwoAnalyticsAccountId
Analytics account ID.
|
class |
GwoAutoPruneMode
Auto prune mode.
|
class |
GwoComboActive
Combination active state.
|
class |
GwoComboId
Combination ID.
|
class |
GwoComboString
Combination section/variation info.
|
class |
GwoControlScript
Control script for experiment.
|
class |
GwoConversionScript
Conversion script for experiment.
|
class |
GwoCoverage
Experiment coverage.
|
class |
GwoExperimentId
Experiment ID.
|
class |
GwoExperimentNotes
Experiment notes.
|
class |
GwoExperimentType
Experiment type.
|
class |
GwoNumAbPageVariations
Number of page variations in an A/B experiment.
|
class |
GwoNumCombinations
Number of combinations in an experiment.
|
class |
GwoNumSections
Number of sections in a multivariate experiment.
|
class |
GwoNumVariations
Number of variations in a section.
|
class |
GwoSectionBeginScript
Script to mark the beginning of a section.
|
class |
GwoSectionEndScript
Script to mark the end of a section.
|
class |
GwoSectionId
Section ID.
|
class |
GwoSourceExperimentId
Source experiment ID.
|
class |
GwoStatus
Current experiment status.
|
class |
GwoTrackingScript
Tracking script for experiment.
|
class |
GwoVariationId
Variation ID.
|
class |
GwoVerificationCombo
Verification combo.
|
class |
GwoVerificationComboCoverage
Verification combo coverage.
|
class |
ManagementEntry
Entry element for GA data source feed.
|
class |
ManagementFeed
Feed element in data source feed.
|
class |
Metric
Metric value.
|
class |
Property
Generic account-level property.
|
class |
SectionEntry
Entry element for section feed.
|
class |
SectionFeed
Feed element in SectionFeed.
|
class |
Segment
Describes a segment.
|
class |
StartDate
First day for which to retrieve data.
|
class |
Step
Single step in a multistep goal.
|
class |
TableId
Identifier to be used in ids query string parameter.
|
class |
TableName
Describes a table name.
|
class |
VariationEntry
Entry element for variation feed.
|
class |
VariationFeed
Feed element in VariationFeed.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Email
Google Apps for Your Domain schema extension describing the email service.
|
class |
EmailList
Apps name space element: "apps:emailList".
|
class |
Login
A name space element: "apps:login".
|
class |
Name
A name space element: "apps:name".
|
class |
Nickname
Apps name space element: "apps:nickname".
|
class |
Quota
Google Apps for Your Domain schema extension describing a user's quota.
|
| Modifier and Type | Class and Description |
|---|---|
class |
GenericEntry
GData entry class that models a generic feed entry which contains only
name-value pairs of data.
|
class |
GenericFeed
GData feed class that models a generic feed which simply contains a list of
generic entries, each have nothing more than a set of key-value pairs.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Label
Google Apps name space element:
<apps:label>. |
class |
MailItemEntry
Used by a MailItemFeedProvider to represent a single MailItemEntry in a list
of MailItems.
|
class |
MailItemFeed
The MailItemFeed class customizes the generic BaseEntry class to define
a feed of MailItem entries.
|
class |
MailItemProperty
Google Apps name space element:
<apps:mailItemProperty>. |
class |
Rfc822Msg
Google Apps name space element:
<apps:rfc822Msg>. |
| Modifier and Type | Class and Description |
|---|---|
class |
EmailListEntry |
class |
EmailListFeed |
class |
EmailListRecipientEntry
Google Apps for Your Domain GData Entry which models a particular recipient
on an email list.
|
class |
EmailListRecipientFeed |
class |
NicknameEntry |
class |
NicknameFeed |
class |
UserEntry |
class |
UserFeed |
| Modifier and Type | Class and Description |
|---|---|
class |
BatchId
Entry extension for
<batch:id> tags. |
class |
BatchInterrupted
Entry extension for the element
<batch:interrupted>, which marks
the batch feed as having been aborted. |
class |
BatchOperation
Entry and Feed extension that defines the batch operation
to apply, defined by its type (
BatchOperationType). |
class |
BatchStatus
Entry extension for the element
<batch:status>, which contains
status information returned by the server about how an entry was processed
in a batch operation. |
| Modifier and Type | Class and Description |
|---|---|
class |
BlogCommentFeed
Describes a feed of an entire blog's comments.
|
class |
BlogEntry
Describes a blog entry in the feed of a user's blogs.
|
class |
BlogFeed
Describes a feed of a user's blogs.
|
class |
BlogPostFeed
Describes a feed of a blog's posts.
|
class |
CommentEntry
Describes an entry for a comment on a post.
|
class |
PostCommentFeed
Describes a feed of a blog post's comments.
|
class |
PostEntry
Describes a blog post entry.
|
| Modifier and Type | Class and Description |
|---|---|
class |
CollectionEntry
Describes an entry in a feed of collections.
|
class |
CollectionFeed
Describes a Book Search collection feed.
|
class |
Embeddability
Describes an embeddability.
|
class |
OpenAccess
Describes an open access.
|
class |
Review
User-provided review.
|
class |
Viewability
Describes a viewability.
|
class |
VolumeEntry
Describes an entry in a feed of Book Search volumes.
|
class |
VolumeFeed
Describes a Book Search volume feed.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AccessLevelProperty
GData schema extension describing how much a given user may do with a
given event or calendar.
|
class |
AnyoneCanAddSelfProperty
Whether anyone can add self as attendee.
|
class |
AttendeeEntry
This is used to represent an entry in an attendee feed.
|
class |
AttendeeFeed
For attendee feeds
|
class |
CalendarAclEntry
Describes an entry in a feed of a Calendar access control list (ACL).
|
class |
CalendarEntry
This represents a single calendar in a list of calendars.
|
class |
CalendarEventEntry
This extends the EventEntry class for event entries in Google Calendars,
|
class |
CalendarEventFeed
Describes a Calendar event feed.
|
class |
CalendarFeed
Describes a feed of Calendars.
|
class |
ColorProperty
GData schema extension describing color property of a calendar
|
class |
EventWho
Calendar extensions to the base-level Who processing for calendar
events.
|
class |
GuestsCanInviteOthersProperty
Whether guests can invite others to the event.
|
class |
GuestsCanModifyProperty
Whether guests can modify event.
|
class |
GuestsCanSeeGuestsProperty
Whether guests can see other attendees.
|
class |
HiddenProperty
GData schema extension describing hidden property of a calendar
|
class |
IcalUIDProperty
GData schema extension describing the UID in the ical export of the event.
|
class |
ListType
GData schema extension describing calendarlist type property of a calendar
|
class |
OverrideNameProperty
GData schema extension describing override name property of a calendar
|
class |
PrivateCopyProperty
Indicates whether this is a private copy of the event, changes to which
should not be sent to other calendars.
|
class |
QuickAddProperty
GData schema extension describing whether gd:content is for quickadd
processing
|
class |
ResourceProperty
GData schema extension describing whether gd:who is a resource, such as a
conference room.
|
class |
SelectedProperty
GData schema extension describing selected property of a calendar
|
class |
SendAclNotificationsProperty
Describes whether to send ACL notifications to grantees.
|
class |
SendEventNotificationsProperty
GData schema extension describing whether to send event notifications
to other participants of the event or not.
|
class |
SequenceNumberProperty
GData schema extension describing sequence number of an event.
|
class |
SyncEventProperty
GData schema extension describing whether this is a sync scenario where the
Ical UID and Sequence number are honored during inserts and updates.
|
class |
TimesCleanedProperty
Describes how many times calendar was cleaned via Manage Calendars.
|
class |
TimeZoneProperty
GData schema extension describing timezone property of a calendar
|
class |
WebContent
A "web content" extension -- here are some examples:
|
| Modifier and Type | Class and Description |
|---|---|
class |
CodeSearchEntry
Used to represent the results of a code query in a single file.
|
class |
CodeSearchFeed
The CodeSearchFeed class customizes the generic BaseFeed class to define
a feed to search for code.
|
class |
File
GData schema extension describing a file.
|
class |
Match
GData schema extension describing a match in the source.
|
class |
Package
GData schema extension describing a package.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BasePersonEntry<E extends BasePersonEntry<E>>
Describes a person entry.
|
class |
BillingInformation
Contact's billing information.
|
class |
Birthday
Contact's birth date.
|
class |
CalendarLink
Contact related calendar link.
|
class |
ContactEntry
Describes a contact entry.
|
class |
ContactFeed
Describes a contact feed.
|
class |
ContactGroupEntry
Describes a contact group entry.
|
class |
ContactGroupFeed
Describes a contact group feed.
|
class |
DirectoryServer
Contact's directory server.
|
class |
Event
Contact's events.
|
class |
ExternalId
Contact's external id field.
|
class |
FileAs
Contact's file as.
|
class |
Gender
Contact's gender.
|
class |
GroupMembershipInfo
Denotes contact's group membership.
|
class |
Hobby
Contact's hobby.
|
class |
Initials
Contact's initials.
|
class |
Jot
Contact's jot.
|
class |
Language
Contact's language field.
|
class |
MaidenName
Contact's maiden name.
|
class |
Mileage
Contact's mileage.
|
class |
Occupation
Contact's hobby.
|
class |
PersonEntry
Describes a person entry.
|
class |
Priority
Contact's priority.
|
class |
ProfileEntry
Describes a profile entry.
|
class |
ProfileFeed
Describes a profile feed.
|
class |
Relation
Contact's relation.
|
class |
Sensitivity
Contact's sensitivity.
|
class |
ShortName
Contact's short name.
|
class |
Status
Person status element.
|
class |
Subject
Contact's subject.
|
class |
SystemGroup
Element that if present marks that a group is a system one.
|
class |
UserDefinedField
Contact's user defined field.
|
class |
Website
Contact related website.
|
class |
YomiName
A quick and dirty way to represent yomi name for Android.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AdditionalRoleInfo
A collection of valid additional roles for a document type.
|
class |
AdditionalRoleSet
A set of valid additional roles for a primary role within a document type.
|
class |
Album
Name of the album.
|
class |
AlbumArt
URL for the album art.
|
class |
AlbumArtist
Artists for the album.
|
class |
ArchiveComplete
Estimated or actual time of archive completion.
|
class |
ArchiveConversion
A map of desired export formats.
|
class |
ArchiveEntry
Describes an Archive entry.
|
class |
ArchiveFailure
Path of the failed document.
|
class |
ArchiveFeed
Describes an Archive feed.
|
class |
ArchiveNotify
Email address to notify of archive completion.
|
class |
ArchiveNotifyStatus
Status of email notification.
|
class |
ArchiveResourceId
Resource ID of a document to archive.
|
class |
ArchiveStatus
Status of archive.
|
class |
ArchiveTotal
Number of documents in the archive.
|
class |
ArchiveTotalComplete
Number of documents processed so far.
|
class |
ArchiveTotalFailure
Number of documents processed which failed to be archived.
|
class |
Artist
Principal artist for the track.
|
class |
AudioEntry
An entry representing a single audio file with a
DocumentListFeed. |
class |
BaseDocumentListEntry<E>
Class that glues
ChangelogEntry which was generated by the genesis
tool to its hand-written superclass (DocumentListEntry). |
class |
BrixEntry
Describes a Brix document entry.
|
class |
ChangelogEntry
Describes an entry representing a single changed document of any type.
|
class |
ChangelogFeed
Describes a feed for retrieving a list of changed documents.
|
class |
Changestamp
Unique change identifier.
|
class |
Composer
Composer of the track.
|
class |
Description
Describes a description.
|
class |
DocumentEntry
An entry representing a single document within a
DocumentListFeed. |
class |
DocumentExportEntry
Describes an entry representing a request to bulk export documents from a
user.
|
class |
DocumentExportFeed
Describes a feed for a list of export requests.
|
class |
DocumentExportRequestor
An additional user who may retrive the exported documents.
|
class |
DocumentListAclFeedLink
Represents a FeedLink referring to an AclFeed.
|
class |
DocumentListEntry
An entry representing a single document of any type within a
DocumentListFeed. |
class |
DocumentListFeed
A feed for managing lists of documents from the Google Docs &
Spreadsheets.
|
class |
DocumentListRevisionFeedLink
Represents a FeedLink referring to a RevisionFeed.
|
class |
DrawingEntry
An entry representing a single drawing within a
DocumentListFeed. |
class |
Duration
Duration of an audio track in milliseconds.
|
class |
ExportDocId
A documents list API Document ID to export.
|
class |
ExportFormat
A map of possible export formats.
|
class |
ExportStatus
The status of export requests.
|
class |
Feature
A rate limited or restricted feature.
|
class |
FeatureName
Name of a feature.
|
class |
FeatureRate
Rate of access to a feature as qps.
|
class |
FileEntry
An entry representing a single file within a
DocumentListFeed. |
class |
Filename
Describes a filename.
|
class |
FolderEntry
An entry representing a folder in a
FolderFeed. |
class |
Genre
Genre of the audio.
|
class |
ImportFormat
A map of possible import formats.
|
class |
LargestChangestamp
Largest existing change identifier for a given user.
|
class |
LastCommented
The time the doclist item was last commented on.
|
class |
MaxUploadSize
Maximum upload file size.
|
class |
Md5Checksum
Describes a md5 checksum.
|
class |
MetadataEntry
Describes a Metadata entry.
|
class |
MetadataFeed
Describes an Metadata feed.
|
class |
ObjectNumber
The number of object match the search query.
|
class |
PdfEntry
An entry representing a single PDF within a
DocumentListFeed. |
class |
PresentationEntry
An entry representing a single presentation within a
DocumentListFeed. |
class |
Publish
Whether the document is published.
|
class |
PublishAuto
Whether changes are automatically re-published.
|
class |
PublishOutsideDomain
Whether the document is published outside of its domain.
|
class |
QueryParameter
The query that doclist will use.
|
class |
QuotaBytesUsedInTrash
The amount of quota consumed by objects in trash.
|
class |
RemainingChangestamps
Number of remaining changestamps.
|
class |
Removed
If a document has been removed from a user's doclist feed.
|
class |
RevisionEntry
Defines an entry in a feed of revisions of a document.
|
class |
RevisionFeed
A feed for accessing different revisions of a doclist document.
|
class |
Size
Size of the content.
|
class |
SpreadsheetEntry
An entry representing a single spreadsheet within a
DocumentListFeed. |
class |
SuggestedFilename
Describes a suggested filename.
|
class |
Track
Number of the track on this album.
|
class |
WritersCanInvite
Allows editors to invite others.
|
class |
Year
Year of release.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Creator
Entity primarily responsible for making the resource.
|
class |
Date
Point or period of time associated with an event in the lifecycle of the
resource.
|
class |
Format
File format, physical medium, or dimensions of the resource.
|
class |
Identifier
An unambiguous reference to the resource within a given context.
|
class |
Publisher
Entity responsible for making the resource available.
|
class |
Rights
Information about rights held in and over the resource.
|
class |
Title
Name given to the resource.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AdditionalName
Person's additional (often: middle) name.
|
class |
Agent
Used in work addresses.
|
class |
BaseEventEntry<E extends BaseEventEntry<E>>
Customizes the base entry to define an event entry.
|
static class |
BaseEventEntry.EventStatus
Defines the base set of values for event status.
|
static class |
BaseEventEntry.Transparency
Defines the base set of values for event transparency.
|
static class |
BaseEventEntry.Visibility
Defines the base set of values for event visibility.
|
class |
BaseEventFeed<F extends BaseEventFeed<F,E>,E extends BaseEventEntry<E>>
Customizes the base feed class to define a feed of events.
|
class |
City
Can be city, village, town, borough, etc.
|
class |
Comments
GData schema extension describing a comments feed.
|
class |
Country
The country name.
|
class |
CustomProperty
Name-value pair with optional type and unit.
|
class |
Deleted
GData schema extension element for indicating a deleted element (tombstone).
|
class |
EntryLink<E extends BaseEntry<?>>
The EntryLink class defines the object model for a link entity that refers to
a GData entry.
|
class |
EventEntry
Extension class for manipulating entries of the Event kind.
|
class |
EventFeed
The EventFeed class customizes the generic event feed class to define
a feed of events.
|
class |
ExtendedProperty
GData schema extension describing an entity's auxiliary property.
|
class |
FamilyName
Person's family name.
|
class |
FeedLink<F extends BaseFeed<?,?>>
The FeedLink class defines the object model for a link entity that refers to
a GData feed.
|
class |
FormattedAddress
User-formatted, full address.
|
class |
FullName
Person's full, formatted name.
|
class |
GeoPt
Deprecated.
Use
com.google.gdata.data.geo.impl package. |
class |
GivenName
Person's given name.
|
class |
HouseName
Used in places where houses or buildings have names.
|
class |
Im
Describes an instant messaging address.
|
class |
Image
GData schema extension describing an image.
|
class |
LastModifiedBy
The user who last modified the object.
|
class |
LastViewed
The time the object was last viewed.
|
class |
MessageEntry
Extension class for manipulating entries of the Message kind.
|
class |
MessageFeed
The Message class customizes the generic BaseEntry class to define
a feed of Message entries.
|
class |
Money
Describes money.
|
class |
NamePrefix
Prefix to a person's name.
|
class |
NameSuffix
Suffix to a person's name.
|
class |
Neighborhood
Neighborhood.
|
class |
Organization
Describes an organization (like Company).
|
class |
OrgDepartment
Department in the organization.
|
class |
OrgJobDescription
Job description.
|
class |
OrgName
Name of organization.
|
class |
OrgSymbol
Organization symbol/ticker.
|
class |
OrgTitle
Position in organization.
|
class |
OriginalEvent
GData schema extension describing a link to a recurring event.
|
class |
PhoneNumber
GData schema extension describing a phone number.
|
class |
PoBox
P.O.
|
class |
PostalAddress
GData schema extension describing a postal address.
|
class |
PostCode
Postal code.
|
class |
QuotaBytesTotal
The total amount of quota.
|
class |
QuotaBytesUsed
The amount of quota consumed by the object.
|
class |
Rating
GData schema extension describing an object's rating.
|
class |
Recurrence
GData schema extension describing an RFC 2445 recurrence rule.
|
class |
RecurrenceException
GData schema extension describing individual exceptions to a
recurring event.
|
class |
Region
Region is state, province, county (in Ireland), Land (in Germany),
d?partement (in France), etc.
|
class |
Reminder
GData schema extension describing a reminder on an event.
|
class |
ResourceId
Resource ID is the unique identifier of an entry within a given scope implied
from the entry type.
|
class |
Street
Describes a street.
|
class |
StructuredPostalAddress
Describes a structured postal address.
|
class |
Subregion
Subregion is county (US), province (in Italy), etc.
|
class |
When
GData schema extension describing a period of time.
|
class |
Where
GData schema extension describing a place (not necessarily a specific
geographical location).
|
class |
Who
GData schema extension describing a person.
|
static class |
Who.AttendeeStatus
Status of event attendee.
|
static class |
Who.AttendeeType
Type of event attendee.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Commission
Commission for the transaction.
|
class |
CostBasis
Cost basis for the portfolio or position.
|
class |
DaysGain
Today's gain for the portfolio or position.
|
class |
Gain
Total gain for the portfolio or position.
|
class |
MarketValue
Market value for the portfolio or position.
|
class |
PortfolioData
Data for the portfolio.
|
class |
PortfolioEntry
Describes an entry in a feed of Finance portfolios.
|
class |
PortfolioFeed
Describes a Finance portfolio feed.
|
class |
PortfolioFeedLink
Describes a portfolio feed link.
|
class |
PositionData
Data for the position.
|
class |
PositionEntry
Describes an entry in a feed of Finance positions.
|
class |
PositionFeed
Describes a Finance position feed.
|
class |
PositionFeedLink
Describes a position feed link.
|
class |
Price
Price of the transaction.
|
class |
Symbol
Stock symbol for the company.
|
class |
TransactionData
Data for the transction.
|
class |
TransactionEntry
Describes an entry in a feed of Finance transactions.
|
class |
TransactionFeed
Describes a Finance transaction feed.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
Box
Interface for specifying a box that describes a rectangular geographic
location.
|
interface |
Point
Interface for specifying a point that describes some geographic location.
|
| Modifier and Type | Class and Description |
|---|---|
class |
GeoLat
Extension for a W3C geo:lat element.
|
class |
GeoLong
Extension for a W3C geo:long element.
|
| Modifier and Type | Class and Description |
|---|---|
class |
GeoRssBox
A georss:box that contains 2 points, like:
|
class |
GeoRssPoint
Extension for a Geo RSS georss:point element.
|
class |
GeoRssWhere
The georss:where element.
|
class |
GmlEnvelope
A gml:Envelope element, this is used to describe a box using the gml version
of our geographic information language.
|
class |
GmlLowerCorner
Point that represents the lower corner of a gml:Envelope.
|
class |
GmlPoint
Extension for a GML gml:Point element.
|
class |
GmlPos
A GML Coordinate which is just a space-separated pair of lat/lon.
|
class |
GmlUpperCorner
Point that represents the upper corner of a gml:Envelope.
|
class |
PointConstruct
A basic point construct consists of a space-separated coordinate in geo
space.
|
class |
W3CPoint
Extension for a W3C geo:Point element.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DocumentFeed
Describes a document feed.
|
class |
DocumentSource
Describes a document source.
|
class |
GlossariesElement
Describes a glossaries element.
|
class |
GlossaryEntry
Describes a glossary entry.
|
class |
GlossaryFeed
Describes a glossary feed.
|
class |
NumberOfSourceWords
Describes a number of source words.
|
class |
PercentComplete
Describes a percent complete.
|
class |
ScopeEntry
Describes a scope entry.
|
class |
SourceLanguage
Describes a source language.
|
class |
TargetLanguage
Describes a target language.
|
class |
TmsElement
Describes a tms element.
|
class |
TranslationComplete
Describes a translation complete.
|
class |
TranslationMemoryEntry
Describes a translation memory entry.
|
class |
TranslationMemoryFeed
Describes a translation memory feed.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BaseHealthEntry<E extends BaseHealthEntry>
Describes a health entry.
|
class |
BaseHealthFeed<F extends BaseHealthFeed,E extends BaseHealthEntry>
Describes a health feed.
|
class |
ContinuityOfCareRecord
Describes a ccr record.
|
class |
ProfileMetaData
Describes profile's meta data.
|
class |
RegisterEntry
Describes a register entry.
|
class |
RegisterFeed
Describes a register feed.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Categories
The Categories class implements the data model for the AtomPub categories
element, as described in Sec 7.2.1 of the AtomPub specification.
|
class |
Collection
The Collection class defines the basic Java object model
representation and XML parsing/generation support for an
APP collection.
|
class |
ServiceDocument
The ServiceDocument class defines the basic Java object model
representation and XML parsing/generation support for an
Atom Publishing Protocol introspection document
|
class |
Workspace
The Workspace class defines the basic Java object model
representation and XML parsing/generation support for an
AtomPub workspace.
|
| Modifier and Type | Class and Description |
|---|---|
class |
FeatureEntry
Describes a feature entry.
|
class |
FeatureFeed
Describes a feature feed.
|
class |
MapEntry
Describes a map entry.
|
class |
MapFeed
Describes a map feed.
|
class |
VersionEntry
Describes a version entry.
|
class |
VersionFeed
Describes a version feed.
|
| Modifier and Type | Class and Description |
|---|---|
class |
MediaEntry<E extends BaseEntry<E>>
The MediaEntry class is an abstract base class for GData services
that support media content.
|
class |
MediaFeed<F extends BaseFeed,E extends BaseEntry>
The MediaFeed class extends
BaseFeed to add media-related
operations for feeds that contain media content. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractMediaResource
An empty tag with a url, width and height attribute.
|
class |
AbstractTextElement
A media element with a 'type' attribute and text content.
|
class |
MediaCategory
<media:category>. |
class |
MediaContent
<media:content>. |
class |
MediaCopyright
<media:copyright>. |
class |
MediaCredit
<media:credit>. |
class |
MediaDescription
<media:description>. |
class |
MediaGroup
<media:group>. |
class |
MediaHash
<media:hash>. |
class |
MediaKeywords
<media:keywords>. |
class |
MediaPlayer
<media:player>. |
class |
MediaRating
<media:rating>. |
class |
MediaRestriction
<media:category>. |
class |
MediaText
<media:text>. |
class |
MediaThumbnail
<media:thumbnail>. |
class |
MediaTitle
<media:title>. |
| Modifier and Type | Class and Description |
|---|---|
class |
AlbumEntry
Entry for album kinds, contains album metadata.
|
class |
AlbumFeed
Feed for an Album in our google photos api.
|
class |
CommentAuthor
Comment author, contains commentor name and image.
|
class |
ExifTags
A photo's exif tags.
|
class |
GphotoAccess
Access level for an album, either public or unlisted.
|
class |
GphotoAlbumCanonicalTitle
Canonical name of the album this entity is in.
|
class |
GphotoAlbumDescription
Album description of the album this entity is in.
|
class |
GphotoAlbumId
The album ID that the entity is contained in.
|
class |
GphotoAlbumTitle
Title of the album this entity is in.
|
class |
GphotoBytesUsed
The number of bytes used by the album.
|
class |
GphotoChecksum
An opaque client checksum.
|
class |
GphotoClient
An opaque client string for extra photo information.
|
class |
GphotoCommentCount
The number of comments on the album.
|
class |
GphotoCommentsEnabled
True if the album allows commenting.
|
class |
GphotoCrowdedLength
Number of results included after crowding.
|
class |
GphotoEntry<E extends GphotoEntry<E>>
The base entry class for Picasaweb data.
|
class |
GphotoExifTime
The unix timestamp from the exif information.
|
class |
GphotoFeaturedDate
Datetime in unix timestamp format for when the photo was featured.
|
class |
GphotoFeed<F extends GphotoFeed>
This class customizes the generic MediaFeed class to define a feed of
GphotoEntries.
|
class |
GphotoHeight
The height of a photo in pixels.
|
class |
GphotoId
The photos system id for the element.
|
class |
GphotoImageVersion
The version of the image bytes.
|
class |
GphotoLocation
The textual location of the album.
|
class |
GphotoMaxPhotos
The maximum number of photos allowed per album.
|
class |
GphotoName
The canonical name of the album.
|
class |
GphotoNickname
The nickname of a user.
|
class |
GphotoOriginalVideo
The original video info field.
|
class |
GphotoPhotoId
The photo ID that the entity is contained in.
|
class |
GphotoPhotosLeft
The number of photos that can be uploaded to this album.
|
class |
GphotoPhotosUsed
The number of photos that have already been uploaded.
|
class |
GphotoPosition
The position of a photo in its album.
|
class |
GphotoQuotaLimit
The maximum available quota.
|
class |
GphotoQuotaUsed
The currently used quota.
|
class |
GphotoRotation
The rotation of a photo in degrees.
|
class |
GphotoRssLink
Link to the rss feed.
|
class |
GphotoShowLink
Flag if contact should appear in gallery page.
|
class |
GphotoSize
The size of a photo in bytes.
|
class |
GphotoSnippet
Snippet of matching text for search results.
|
class |
GphotoSnippetType
Type of snippet included in search results.
|
class |
GphotoStarred
If viewer starred the photo and total number of stars.
|
class |
GphotoStreamId
The stream ID of a stream the photo belongs to.
|
class |
GphotoSubscribed
Flag if user will receive update emails from a contact.
|
class |
GphotoThumbnail
The thumbnail for a user portrait or album cover.
|
class |
GphotoTimestamp
A datetime in unix timestamp format.
|
class |
GphotoTruncated
Truncated value of search results.
|
class |
GphotoType
Type of element.
|
class |
GphotoUsername
The username of a photos user.
|
class |
GphotoVersion
The version of the entity.
|
class |
GphotoVideoStatus
The video status field.
|
class |
GphotoVideoUrl
The url to the video source of the photo.
|
class |
GphotoViewCount
The number of views for this image.
|
class |
GphotoWeight
The number of items this tag appears on.
|
class |
GphotoWidth
The width of a photo in pixels.
|
class |
KmlSnippet
Simple value element for kml snippets.
|
class |
PheedImageUrl
Photo image source.
|
class |
PheedThumbnail
Photo thumbnail.
|
class |
PheedVideoUrl
Video source.
|
class |
PhotoEntry
Entry for photo kinds, contains photo metadata.
|
class |
PhotoFeed
Feed for a Photo in our google data api.
|
class |
TagEntry
Entry for tag kinds, contains tag metadata.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Extensible.addExtension(Extension extension)
Adds an extension object.
|
void |
Extensible.addRepeatingExtension(Extension extension)
Adds a repeating extension object.
|
void |
Extensible.removeExtension(Extension extension)
Removes an extension object.
|
void |
Extensible.removeRepeatingExtension(Extension ext)
Removes a repeating extension object.
|
void |
Extensible.setExtension(Extension extension)
Sets an extension object.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Extensible.removeExtension(Class<? extends Extension> extensionClass)
Removes an extension object based on its class.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ExifTag
An exif tag with a given name and value.
|
| Modifier and Type | Method and Description |
|---|---|
protected <T extends Extension> |
GphotoDataImpl.getExtension(Class<T> extClass)
Get an extension by class.
|
protected <T extends Extension> |
GphotoDataImpl.getRepeatingExtension(Class<T> extClass)
Get a repeating extension by class.
|
| Modifier and Type | Method and Description |
|---|---|
void |
MediaDataImpl.addExtension(Extension extension) |
void |
GphotoDataImpl.addExtension(Extension extension)
Add an extension.
|
void |
MediaDataImpl.addRepeatingExtension(Extension extension) |
void |
GphotoDataImpl.addRepeatingExtension(Extension extension)
Add a repeating extension.
|
void |
MediaDataImpl.removeExtension(Extension extension) |
void |
GphotoDataImpl.removeExtension(Extension extension)
Remove an extension.
|
void |
MediaDataImpl.removeRepeatingExtension(Extension extension) |
void |
GphotoDataImpl.removeRepeatingExtension(Extension ext) |
void |
MediaDataImpl.setExtension(Extension extension) |
void |
GphotoDataImpl.setExtension(Extension extension)
Set an extension.
|
| Modifier and Type | Method and Description |
|---|---|
void |
MediaDataImpl.removeExtension(Class<? extends Extension> extensionClass) |
void |
GphotoDataImpl.removeExtension(Class<? extends Extension> extensionClass)
Remove an extension by class.
|
| Modifier and Type | Class and Description |
|---|---|
class |
PheedConstruct
Deprecated.
the pheed construct is deprecated in favor of media rss.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BlockedOn
Issue this issue is blocked on.
|
class |
BlockedOnUpdate
Issue blockedOn updates.
|
class |
Blocking
Issue blocked by this issue.
|
class |
Cc
Entry in the issue cc list.
|
class |
CcUpdate
Issue cc update.
|
class |
ClosedDate
DateTime this issue is closed.
|
class |
Id
Issue ID.
|
class |
IssueCommentsEntry
Describes an issue comments entry.
|
class |
IssueCommentsFeed
Describes an issue comments feed.
|
class |
IssuesEntry
Google Code Project Issues Feed entry.
|
class |
IssuesFeed
Google Code Project Issues Feed.
|
class |
IssuesLink
Extends the base Link class with Project Hosting extensions.
|
class |
MergedInto
Issue this issue is merged into.
|
class |
MergedIntoUpdate
Issue mergedInto updates.
|
class |
Owner
Issue owner.
|
class |
OwnerUpdate
Issue owner update.
|
class |
Project
Project name.
|
class |
ProjectLabel
Project label.
|
class |
ProjectsFeed
Google Code Projects Feed.
|
class |
ProjectSummaryEntry
Google Code Project Summary Entry.
|
class |
Repository
Project repository information.
|
class |
RepositoryUrl
Repository url.
|
class |
SendEmail
Whether or not to send email notifications.
|
class |
Stars
Issue star count.
|
class |
State
Whether the issue is open or closed.
|
class |
Summary
Issue summary.
|
class |
Updates
List of metadata updates.
|
class |
Uri
Describes the URI associated with a user.
|
class |
Username
Username of a user.
|
| Modifier and Type | Class and Description |
|---|---|
class |
EntriesNumber
Number of Sidewiki entries written by this user.
|
class |
SidewikiAuthor
Sidewiki author.
|
class |
SidewikiEntry
Describes a Sidewiki entry in the feed of Sidewiki entries.
|
class |
SidewikiEntryFeed
Describes a feed of Sidewiki entries.
|
class |
SidewikiThumbnail
The thumbnail for a user portrait or the web page a Sidewiki entry is about.
|
class |
SidewikiUserDescription
The description of a user.
|
class |
SidewikiUserEntry
Describes a Sidewiki user entry.
|
class |
SidewikiUserFeed
Describes a feed of Sidewiki users.
|
class |
Usefulness
Usefulness of entry.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ActivityEntry
An entry representing a user action in a site.
|
class |
ActivityFeed
Describes an activity feed.
|
class |
AnnouncementEntry
Describes an announcement entry.
|
class |
AnnouncementsPageEntry
Describes an announcements page entry.
|
class |
AttachmentEntry
Describes an attachment entry.
|
class |
BaseActivityEntry<E extends BaseActivityEntry<E>>
An entry representing a user action in a site.
|
class |
BaseContentEntry<E extends BaseContentEntry<E>>
An entry representing a single content item.
|
class |
BasePageEntry<E extends BasePageEntry<E>>
An entry representing a page in the site.
|
class |
ContentEntry
An entry representing a single content item.
|
class |
ContentFeed
Describes a content feed.
|
class |
CreationActivityEntry
An activity entry for content creation.
|
class |
DeletionActivityEntry
An activity entry for content deletion.
|
class |
EditActivityEntry
An activity entry for a content edit.
|
class |
FileCabinetPageEntry
Describes a file cabinet page entry.
|
class |
ListItemEntry
Describes a list item entry.
|
class |
ListPageEntry
Describes a list page entry.
|
class |
MoveActivityEntry
An activity entry for a content move.
|
class |
PageEntry
An entry representing a page in the site.
|
class |
PageName
An element indicating the name of a particular item.
|
class |
RecoveryActivityEntry
An activity entry for content recovery.
|
class |
Revision
An element indicating the revision number of a particular item.
|
class |
SiteEntry
An entry representing a site.
|
class |
SiteFeed
Describes a site feed.
|
class |
SiteName
An element indicating the name of a site as used in urls.
|
class |
SitesLink
Describes a sites link.
|
class |
Theme
An element indicating the active theme of a site.
|
class |
WebAttachmentEntry
Describes a web attachment entry.
|
class |
WebPageEntry
Describes a web page entry.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Cell
GData schema extension describing a spreadsheet formula.
|
class |
CellEntry
Atom Entry for a single cell for the Google Spreadsheets cells feed.
|
class |
CellFeed
The feed for spreadsheet cells of Google Spreadsheets.
|
class |
ColCount
GData schema extension describing a spreadsheet's column count.
|
class |
Column
Describes a column.
|
class |
CustomElementCollection
Extension that globs together all "gsx:" tags into one.
|
class |
Data
Describes a data region of a table.
|
class |
Field
Describes a field.
|
class |
Header
Describes a header row.
|
class |
ListEntry
Atom Entry for one single row Google Spreadsheets in the list-based
access mode.
|
class |
ListFeed
The feed for treating a spreadsheet as a collection of list items.
|
class |
RecordEntry
Describes a record entry in the feed of a table's records.
|
class |
RecordFeed
Describes a feed of a table's records.
|
class |
RecordValue
Describes a value in a column of the record entry.
|
class |
RowCount
GData schema extension describing a spreadsheet's row count.
|
class |
SpreadsheetFeed
The feed for getting a list of Spreadsheets within a sheet.
|
class |
TableEntry
Describes a table entry in the feed of a spreadsheet's tables.
|
class |
TableFeed
Describes a feed of a spreadsheet's tables.
|
class |
Worksheet
Describes a worksheet where the table lives.
|
class |
WorksheetEntry
One worksheet, when listing all worksheets within a spreadsheet.
|
class |
WorksheetFeed
The feed for getting a list of worksheets within a sheet.
|
| Modifier and Type | Class and Description |
|---|---|
class |
InReplyTo
Indicates that this entry is a response to another resource.
|
class |
Total
Indicates total number of unique responses to an entry.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BoolValueConstruct
GData schema extension describing a node with a boolean value.
|
class |
CrawlIssueCrawlType
Type of crawl of the crawl issue.
|
class |
CrawlIssueDateDetected
Detection date for the issue.
|
class |
CrawlIssueDetail
Detail of the crawl issue.
|
class |
CrawlIssueEntry
Describes a crawl issue entry.
|
class |
CrawlIssueIssueType
Type of crawl issue.
|
class |
CrawlIssueLinkedFromUrl
Source URL that links to the issue URL.
|
class |
CrawlIssuesFeed
Feed of crawl issues for a particular site.
|
class |
CrawlIssueUrl
URL affected by the crawl issue.
|
class |
CrawlRateConstruct
GData schema extension describing a node with a crawl rate.
|
class |
DateTimeValueConstruct
GData schema extension describing a node with a
DateTime value. |
class |
DomainPreferenceConstruct
GData schema extension describing a node with a domain preference.
|
class |
IntValueConstruct
GData schema extension describing a node with an integer value.
|
class |
Keyword
A keyword in a site or in a link to a site.
|
class |
KeywordEntry
Describes a keyword entry.
|
class |
KeywordsFeed
Feed of keywords for a particular site.
|
static class |
MessageEntry.BodyExtension
Value construct to represent field.
|
static class |
MessageEntry.DateExtension
DateTimeValueConstruct to represent
|
static class |
MessageEntry.LanguageExtension
Value construct to represent
|
static class |
MessageEntry.ReadExtension
BoolValueConstruct to represent
|
static class |
MessageEntry.SubjectExtension
Value construct to represent
|
class |
MessagesFeed
The MessagesFeed class extends the BaseFeed class to define
a feed of messages.
|
class |
RegionCodeValueConstruct
GData schema extension describing a node with a region code value.
|
class |
SitemapMobile
Represents list of available markup languages for mobile sitemap.
|
class |
SitemapNews
Represents list of available publication labels for News sitemap.
|
class |
SitemapsEntry<E extends SitemapsEntry<E>>
Defines an abstract base class for sitemap entry.
|
static class |
SitemapsEntry.LastDownloaded
Represents a single
|
static class |
SitemapsEntry.SitemapStatus
Represents
|
static class |
SitemapsEntry.UrlCount
Represents a single
|
class |
SitemapsFeed
The SitemapsFeed class customizes the generic BaseFeed class to define
a feed of sitemaps that Webmaster Tools user has for a given site.
|
class |
SitemapsMobileEntry
This represents a single Mobile sitemap entry in a list of sitemaps.
|
static class |
SitemapsMobileEntry.MarkupLanguage
Represents a single
|
class |
SitemapsNewsEntry
This represents a single News sitemap entry in a list of sitemaps.
|
static class |
SitemapsNewsEntry.PublicationLabel
Represents
|
class |
SitemapsRegularEntry
This represents a single regular sitemap entry in a list of sitemaps.
|
static class |
SitemapsRegularEntry.SitemapType
Represents a single
|
class |
SitesEntry
This represents a single web site entry.
|
static class |
SitesEntry.Crawled
Deprecated.
This class is not used any more.
|
static class |
SitesEntry.CrawlingRate
Crawl Rate construct to represent
|
static class |
SitesEntry.EnhancedImageSearch
Boolean value construct to represent
|
static class |
SitesEntry.Geolocation
Region code value construct to represent
|
static class |
SitesEntry.Indexed
Deprecated.
This class is not used any more.
|
static class |
SitesEntry.PreferredDomain
Domain Preference construct to represent
|
static class |
SitesEntry.Verified
Boolean value construct to represent
|
class |
SitesFeed
The SitesFeed class customizes the generic BaseFeed class to define
a feed of web sites that Webmaster Tools user has.
|
class |
VerificationMethod
GData schema extension describing a node specifying verification method.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractFreeTextExtension
An extension with a content and nothing else.
|
class |
CaptionTrackEntry
A caption track.
|
class |
CaptionTrackFeed
A feed of
CaptionTrackEntry |
class |
ChannelEntry
An atom entry containing a channel.
|
class |
ChannelFeed
Feed containing channels.
|
class |
CommentFeed
Object representation for the comment feed.
|
class |
ComplaintEntry
A complaint.
|
class |
ComplaintFeed
A feed that contains a list of
ComplaintEntry. |
class |
FavoriteEntry
A YouTube video favorite entry.
|
class |
FavoriteFeed
A YouTube favorite feed.
|
class |
FeedLinkEntry<T extends BaseEntry>
An entry that's actually a glorified feed link, used in
playlists and subscription feeds.
|
class |
FriendEntry
An entry that corresponds to a youtube contact/friend as
displayed on the user contacts feed.
|
class |
FriendFeed
A feed that contains a list of
FriendEntry. |
class |
PlaylistEntry
A YouTube playlist entry.
|
class |
PlaylistFeed
A YouTube playlist feed.
|
class |
PlaylistLinkEntry
Entries that appear on the user playlist feed.
|
class |
PlaylistLinkFeed
A feed that contains playlist link entries.
|
class |
RatingEntry
An entry in the rating feed.
|
class |
RatingFeed
Object representatino for the rating feed.
|
class |
SubscriptionEntry
Entries that appear on the publisher playlist feed.
|
class |
SubscriptionFeed
A feed that contains playlist link entries.
|
class |
UserEventEntry
An atom entry containing a user event.
|
class |
UserEventFeed
A feed that contains user event entries.
|
class |
UserProfileEntry
An atom entry containing a user profile.
|
class |
UserProfileFeed
Feed containing user profiles.
|
class |
VideoEntry
Video entry for the youtube feeds.
|
class |
VideoFeed
Video feed returned by the feed providers.
|
class |
VideoMessageEntry
A YouTube shared video entry.
|
class |
VideoMessageFeed
Shared video feed (inbox).
|
class |
YouTubeMediaContent
Adds an attribute in the yt: namespace to
media:content. |
class |
YouTubeMediaCredit
Adds attributes to
media:credit. |
class |
YouTubeMediaGroup
Subset of
<media:group>. |
class |
YouTubeMediaRating
Adds an attribute
yt:country to MediaRating. |
class |
YtAboutMe
yt:aboutMe tag, found on the user detail page
|
class |
YtAge
Object representation for the yt:age tag.
|
class |
YtAspectRatio
Object representation for the yt:aspectRatio tag.
|
class |
YtBooks
yt:books tag, found on the user detail page
|
class |
YtCommentRating
Object representation for the yt:commentRating tag.
|
class |
YtCompany
yt:company tag, found on the user detail page
|
class |
YtCountHint
Object representation for the yt:countHint tag.
|
class |
YtDerived
Object representation for
yt:derived which describes
how this caption track was derived from other data. |
class |
YtDescription
Deprecated.
This tag is only accepted in version 1 of the protocol. The tag
atom:summary usually replaces yt:description in
version 2 and later. |
class |
YtDuration
Duration class.
|
class |
YtFirstName
yt:firstname tag, found on the user's detail page and on the
contact feed.
|
class |
YtFormatInfo
Object representation for the yt:rating tag.
|
class |
YtGender
Object representation for the yt:gender tag
|
class |
YtHobbies
yt:hobbies tag, found on the user detail page
|
class |
YtHometown
yt:hometown tag, found on the user detail page
|
class |
YtIncomplete
Object representation of
app:control/yt:incomplete, which
describes the publication state of an entry. |
class |
YtLastName
yt:lastname tag, found on the user's detail page and on the
contact feed.
|
class |
YtLocation
yt:location tag, found on the user detail page
Example:
<yt:location>Mountain View, CA 94043, USA</yt:location> |
class |
YtMovies
yt:movies tag, found on the user detail page
|
class |
YtMusic
yt:music tag, found on the user detail page
|
class |
YtNoEmbed
Object representation for the yt:videoshare tag.
|
class |
YtOccupation
yt:occupation tag, found on the user detail page
|
class |
YtPlaylistId
yt:playlistid tag found in the subscription entry.
|
class |
YtPlaylistTitle
yt:playlisttitle tag, containing the title of the playlist subscribed to
|
class |
YtPosition
Object representation for the yt:position tag.
|
class |
YtPrivate
Object representation for the yt:private tag.
|
class |
YtPublicationState
Object representation of
app:control/yt:state, which
describes the publication state of an entry. |
class |
YtQueryString
yt:querystring tag, declaring the query of a subscription with type query.
|
class |
YtRacy
Deprecated.
in favor of
MediaRating with
YouTubeNamespace.MEDIA_RATING_SCHEME. |
class |
YtRating
Object representation for the yt:rating tag.
|
class |
YtRecorded
Object representation of the tag yt:recorded.
|
class |
YtRelationship
Object representation for the yt:relationship tag
|
class |
YtSchool
yt:school tag, found on the user detail page
Example:
<yt:school>Mountain View, CA 94043, USA</yt:school> |
class |
YtSpam
Object representation for the yt:spam tag.
|
class |
YtStatistics
A tag containing statistics about the entry it's in.
|
class |
YtStatus
Object representation for the yt:status tag on the user contact feed.
|
class |
YtToken
yt:token tag, found inside media edit links.
|
class |
YtUploaded
Video upload time tag inside "media:group": "yt:uploaded".
|
class |
YtUsername
yt:username tag, found on the user detail page and on the
contact feed.
|
class |
YtUserProfileStatistics
A tag containing statistics about the user
|
class |
YtVideoId
VideoId class.
|
Copyright © 2012. All Rights Reserved.