| java.lang.Object | ||
| ↳ | com.google.gdata.model.Element | |
| ↳ | com.google.gdata.model.gd.ExtendedProperty | |
Stores a limited amount of custom data as an auxiliary property of the enclosing entity.
| Nested Classes | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| ExtendedProperty.Realm | Limit on who may see and modify this extended property. | ||||||||||
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| KEY | The key for this element. | ||||||||||
| NAME | Name of the property expressed as a URI. | ||||||||||
| REALM | Limit on who may see and modify this extended property. | ||||||||||
| VALUE | Property value. | ||||||||||
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.model.Element
| |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Constructs an instance using the default key.
| |||||||||||
| Protected Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Subclass constructor, allows subclasses to supply their own element key.
| |||||||||||
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. | |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Returns the name of the property expressed as a URI.
| |||||||||||
Returns the limit on who may see and modify this extended property.
| |||||||||||
Returns the property value.
| |||||||||||
Returns whether it has the name of the property expressed as a URI.
| |||||||||||
Returns whether it has the limit on who may see and modify this extended
property.
| |||||||||||
Returns whether it has the property value.
| |||||||||||
Locks this element.
| |||||||||||
Registers the metadata for this element.
| |||||||||||
Sets the name of the property expressed as a URI.
| |||||||||||
Sets the limit on who may see and modify this extended property.
| |||||||||||
Sets the property value.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.model.Element
| |||||||||||
From class
java.lang.Object
| |||||||||||
Limit on who may see and modify this extended property.
Constructs an instance using the default key.
Subclass constructor, allows subclasses to supply their own element key.
| key |
|---|
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. Will use the given ElementKey as the key
for the element. This constructor is used when adapting from one element
key to another. You cannot call this constructor directly, instead use
createElement(ElementKey, Element).
| key | The key to use for this element. |
|---|---|
| source | Source element |
| obj |
|---|
Returns the name of the property expressed as a URI.
Returns the limit on who may see and modify this extended property.
Returns the property value.
Returns whether it has the name of the property expressed as a URI.
Returns whether it has the limit on who may see and modify this extended property.
Returns whether it has the property value.
Locks this element. A locked element cannot have any changes made to its content or its attributes or child elements. This will also lock all attributes and child elements as well. Once this method has been called, this element can be safely published to other threads.
Registers the metadata for this element.
| registry |
|---|
Sets the name of the property expressed as a URI.
| name | Name of the property expressed as a URI or null to
reset |
|---|
Sets the limit on who may see and modify this extended property.
| realm | Limit on who may see and modify this extended property or
null to reset |
|---|
Sets the property value.
| value | Property value or null to reset |
|---|