com.google.gdata.data.photos
Class TagEntry
java.lang.Object
com.google.gdata.data.AbstractExtension
com.google.gdata.data.ExtensionPoint
com.google.gdata.data.BaseEntry<E>
com.google.gdata.data.media.MediaEntry<E>
com.google.gdata.data.photos.GphotoEntry<TagEntry>
com.google.gdata.data.photos.TagEntry
- All Implemented Interfaces:
- Extension, IAtom, IEntry, Kind.Adaptable, Kind.Adaptor, IMediaEntry, AtomData, Extensible, GphotoData, TagData
public class TagEntry
- extends GphotoEntry<TagEntry>
- implements AtomData, TagData
Entry for tag kinds, contains tag metadata.
Field Summary |
static Category |
CATEGORY
Tag kind category. |
static java.lang.String |
KIND
Tag kind term value. |
Constructor Summary |
TagEntry()
Default mutable constructor. |
TagEntry(BaseEntry<?> sourceEntry)
Constructs a new instance by doing a shallow copy of data from an existing
BaseEntry instance. |
Method Summary |
void |
declareExtensions(ExtensionProfile extProfile)
Declares the set of expected Extension types for an ExtensionPoint within
the target extension profile. |
java.lang.Integer |
getWeight()
The weight of the tag is the number of times the tag appears in the
collection of tags currently being viewed. |
GphotoWeight |
getWeightExt()
Returns the weight of the tag. |
boolean |
hasWeightExt()
Returns whether it has the weight of the tag. |
void |
setWeight(java.lang.Integer weight)
Set the weight of the tag. |
void |
setWeightExt(GphotoWeight weightExt)
Sets the weight of the tag. |
java.lang.String |
toString()
|
Methods inherited from class com.google.gdata.data.BaseEntry |
addAdaptor, addHtmlLink, addLink, addLink, delete, generate, generateAtom, getAdaptor, getAdaptors, getAuthors, getCanEdit, getCategories, getContent, getContributors, getEdited, getEditLink, getEtag, getHandler, getHtmlLink, getId, getKind, getLink, getLinks, getLinks, getPlainTextContent, getPubControl, getPublished, getResumableEditMediaLink, getRights, getSelectedFields, getSelf, getSelfLink, getService, getSource, getSummary, getTextContent, getTitle, getUpdated, getVersionId, isDraft, parseAtom, parseAtom, parseAtom, readEntry, readEntry, removeLinks, removeLinks, setCanEdit, setContent, setContent, setDraft, setEdited, setEtag, setId, setKind, setPubControl, setPublished, setRights, setSelectedFields, setSource, setSummary, setTitle, setUpdated, setVersionId, update |
Methods inherited from class com.google.gdata.data.ExtensionPoint |
addExtension, addRepeatingExtension, generateCumulativeXmlBlob, getExtension, getExtensions, getRepeatingExtension, getRepeatingExtensions, getXmlBlob, hasExtension, hasRepeatingExtension, parseCumulativeXmlBlob, removeExtension, removeExtension, removeRepeatingExtension, setExtension, setXmlBlob, visit |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface com.google.gdata.data.photos.AtomData |
getAuthors, getCategories, getContributors, getDescription, getId, getLinks, getRights, getTitle, getUpdated, setDescription, setId, setRights, setTitle, setUpdated |
Methods inherited from interface com.google.gdata.data.IEntry |
getCanEdit, getContent, getEdited, getEditLink, getPublished, getResumableEditMediaLink, getSelectedFields, getSummary, setCanEdit, setEdited, setPublished, setSelectedFields |
Methods inherited from interface com.google.gdata.data.IAtom |
addLink, getAuthors, getCategories, getEtag, getId, getKind, getLink, getLinks, getSelfLink, getTitle, getUpdated, getVersionId, removeLinks, removeLinks, setEtag, setId, setKind, setUpdated, setVersionId |
KIND
public static final java.lang.String KIND
- Tag kind term value.
- See Also:
- Constant Field Values
CATEGORY
public static final Category CATEGORY
- Tag kind category.
TagEntry
public TagEntry()
- Default mutable constructor.
TagEntry
public TagEntry(BaseEntry<?> sourceEntry)
- Constructs a new instance by doing a shallow copy of data from an existing
BaseEntry
instance.
- Parameters:
sourceEntry
- source entry
declareExtensions
public void declareExtensions(ExtensionProfile extProfile)
- Description copied from class:
ExtensionPoint
- Declares the set of expected Extension types for an ExtensionPoint within
the target extension profile. The base implementation does not declare any
extensions, but can be overridden by specific types of ExtensionPoints that
always contain a well-defined set of extensions.
- Specified by:
declareExtensions
in interface Kind.Adaptor
- Specified by:
declareExtensions
in interface Extensible
- Overrides:
declareExtensions
in class GphotoEntry<TagEntry>
- Parameters:
extProfile
- the ExtensionProfile to initialize.- See Also:
ExtensionProfile.addDeclarations(Kind.Adaptor)
getWeightExt
public GphotoWeight getWeightExt()
- Returns the weight of the tag.
- Returns:
- weight of the tag
setWeightExt
public void setWeightExt(GphotoWeight weightExt)
- Sets the weight of the tag.
- Parameters:
weightExt
- weight of the tag or null
to reset
hasWeightExt
public boolean hasWeightExt()
- Returns whether it has the weight of the tag.
- Returns:
- whether it has the weight of the tag
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Object
getWeight
public java.lang.Integer getWeight()
throws ParseException
- Description copied from interface:
TagData
- The weight of the tag is the number of times the tag appears in the
collection of tags currently being viewed. This is a server-provided
context sensitive measure of how often the tag is used, and can be used
to implement tag-cloud like views.
- Specified by:
getWeight
in interface TagData
- Returns:
- the weight of the tag, or null if it doesn't have one.
- Throws:
ParseException
- for backwards compatibility
setWeight
public void setWeight(java.lang.Integer weight)
- Description copied from interface:
TagData
- Set the weight of the tag. Used by the server, this field is read only
on the client.
- Specified by:
setWeight
in interface TagData