| Package | Description |
|---|---|
| com.google.gdata.model | |
| com.google.gdata.model.atom | |
| com.google.gdata.model.atompub | |
| com.google.gdata.model.batch | |
| com.google.gdata.model.gd |
| Modifier and Type | Field and Description |
|---|---|
static ElementKey<Void,XmlBlob> |
XmlBlob.KEY
The id-less key for XmlBlob, a real name must be set before being used.
|
| Modifier and Type | Method and Description |
|---|---|
ElementKey<?,?> |
ForwardingElementMetadata.adapt(String kind) |
ElementKey<?,?> |
ElementMetadata.adapt(String kind)
Adapts this metadata to another type, based on the given kind.
|
ElementKey<?,?> |
ForwardingElementMetadata.findElement(QName id) |
ElementKey<?,?> |
ElementMetadata.findElement(QName id)
Finds an element of the given id on this element or any adaptations.
|
static ElementKey<?,?> |
Element.getDefaultKey(Class<? extends Element> type)
Returns the default
ElementKey for an Element type. |
ElementKey<?,?> |
Element.getElementKey()
Returns the key to this element.
|
ElementKey<D,E> |
ForwardingElementMetadata.getKey() |
ElementKey<D,E> |
ElementMetadata.getKey()
Returns the element key that this element is bound to.
|
ElementKey<?,?> |
Metadata.getParent()
Returns the parent of this metadata instance, or
null if this
metadata does not take the parent key into account. |
ElementKey<?,?> |
ForwardingElementMetadata.getParent() |
ElementKey<?,?> |
Path.getParentKey()
Returns the element key for the second-to-last key in the path.
|
ElementKey<?,?> |
Path.getSelectedElementKey()
Returns the element key at the end of the path.
|
static ElementKey<String,Element> |
ElementKey.of(QName id)
Return a default element key using a string datatype and
Element as the element type. |
static <T,V extends Element> |
ElementKey.of(QName id,
Class<? extends T> datatype,
Class<? extends V> elementType)
Construct an element key with the given id, datatype, and element type.
|
static <V extends Element> |
ElementKey.of(QName id,
Class<? extends V> elementType)
Construct an element key with the given id and element type, but with
a
Void datatype. |
| Modifier and Type | Method and Description |
|---|---|
Collection<ElementKey<?,?>> |
ForwardingElementMetadata.getElements() |
Collection<ElementKey<?,?>> |
ElementMetadata.getElements()
Returns an immutable set of child keys in declaration order.
|
| Modifier and Type | Method and Description |
|---|---|
protected <T extends Element> |
Element.adapt(ElementKey<?,T> key,
Element source)
Adapts an element based on a different key.
|
<D,E extends Element> |
MetadataRegistry.adapt(ElementKey<D,E> source,
String kind,
ElementKey<? extends D,? extends E> adaptation)
Adapts from the source type to the adaptation type on the given kind.
|
<D,E extends Element> |
MetadataRegistry.adapt(ElementKey<D,E> source,
String kind,
ElementKey<? extends D,? extends E> adaptation)
Adapts from the source type to the adaptation type on the given kind.
|
ElementCreator |
ElementCreator.adapt(String kind,
ElementKey<?,?> adaptation)
Adds an adaptation from the element type of this element to the adaptation
type.
|
ElementCreator |
ElementCreator.addElement(ElementKey<?,?> element)
Add the metadata for a child element.
|
Element |
Element.addElement(ElementKey<?,?> key,
Element element)
Add a child element with the given key.
|
<D> AttributeMetadata<D> |
Schema.bind(ElementKey<?,?> parent,
AttributeKey<D> attribute)
Returns the default metadata for the given attribute.
|
<D> AttributeMetadata<D> |
Schema.bind(ElementKey<?,?> parent,
AttributeKey<D> attribute,
MetadataContext context)
Returns the metadata for the attribute, bound to the context.
|
<D,E extends Element> |
Schema.bind(ElementKey<?,?> parent,
ElementKey<D,E> child)
Returns the metadata for the child element in the parent.
|
<D,E extends Element> |
Schema.bind(ElementKey<?,?> parent,
ElementKey<D,E> child)
Returns the metadata for the child element in the parent.
|
<D,E extends Element> |
Schema.bind(ElementKey<?,?> parent,
ElementKey<D,E> child,
MetadataContext context)
Returns the metadata for the child element in the parent, bound to the
context.
|
<D,E extends Element> |
Schema.bind(ElementKey<?,?> parent,
ElementKey<D,E> child,
MetadataContext context)
Returns the metadata for the child element in the parent, bound to the
context.
|
<D,E extends Element> |
Schema.bind(ElementKey<D,E> key)
Returns the default metadata for the element key.
|
<D,E extends Element> |
Schema.bind(ElementKey<D,E> key,
MetadataContext context)
Returns the metadata for the element key bound to the context.
|
<K,L extends Element> |
ForwardingElementMetadata.bindElement(ElementKey<K,L> key) |
<K,L extends Element> |
ElementMetadata.bindElement(ElementKey<K,L> key)
Binds the child element metadata associated with a particular key.
|
ElementCreator |
ElementCreator.blacklistElements(ElementKey<?,?>... keys)
Blacklist a set of keys, these keys will be explicitly hidden from view.
|
ElementCreator |
MetadataRegistry.build(ElementKey<?,?> element)
Builds element metadata for the given key.
|
AttributeCreator |
MetadataRegistry.build(ElementKey<?,?> parent,
AttributeKey<?> attribute)
Builds the metadata for the attribute inside the parent.
|
AttributeCreator |
MetadataRegistry.build(ElementKey<?,?> parent,
AttributeKey<?> attribute,
MetadataContext context)
Builds the metadata for the attribute inside the parent, during the
context.
|
ElementCreator |
MetadataRegistry.build(ElementKey<?,?> parent,
ElementKey<?,?> element)
Builds metadata for when the
key is inside the parent. |
ElementCreator |
MetadataRegistry.build(ElementKey<?,?> parent,
ElementKey<?,?> element)
Builds metadata for when the
key is inside the parent. |
ElementCreator |
MetadataRegistry.build(ElementKey<?,?> parent,
ElementKey<?,?> element,
MetadataContext context)
Builds metadata for when the
key is inside the parent and
used in a context compatible with context. |
ElementCreator |
MetadataRegistry.build(ElementKey<?,?> parent,
ElementKey<?,?> element,
MetadataContext context)
Builds metadata for when the
key is inside the parent and
used in a context compatible with context. |
ElementCreator |
MetadataRegistry.build(ElementKey<?,?> element,
MetadataContext context)
Builds metadata for when the
key is used in a context compatible
with context. |
static <E extends Element> |
Element.createElement(ElementKey<?,E> key)
Helper method that constructs a new
Element instance of the type
defined by the type parameter E. |
static <E extends Element> |
Element.createElement(ElementKey<?,E> key,
Element source)
Helper method that constructs a new
Element instance of the type
defined by the type parameter E. |
<D,T extends Element> |
Element.getElement(ElementKey<D,T> childKey)
Get child element matching the specified key.
|
<T extends Element> |
Element.getElements(ElementKey<?,T> key)
Get child elements matching the specified key.
|
<T extends Element> |
Element.getElementSet(ElementKey<?,T> key)
Get child elements matching the specified key.
|
<V> V |
Element.getElementValue(ElementKey<V,? extends Element> key)
Convenience method to return child element's text node cast to
the specified type.
|
<V> V |
Element.getTextValue(ElementKey<V,?> key)
Returns the element value adapted to the key's datatype.
|
boolean |
Element.hasElement(ElementKey<?,?> childKey)
Returns true if the element has child element(s) with the given key.
|
boolean |
ForwardingElementMetadata.isDeclared(ElementKey<?,?> element) |
boolean |
ElementMetadata.isDeclared(ElementKey<?,?> element)
Returns true if this metadata declares the given child element.
|
boolean |
MetadataRegistry.isRegistered(ElementKey<?,?> key)
Returns
true if the given key has already been registered. |
ElementCreator |
ElementCreator.moveElement(ElementKey<?,?> key,
Path path)
Adds a new virtual element based on a path.
|
ElementCreator |
ElementCreator.orderAndWhitelistElements(ElementKey<?,?>... keys)
Sets a list of elements as the only visible child elements for an element,
and also places them into the given order in the element.
|
MetadataRegistry |
MetadataRegistry.register(ElementKey<?,?> key)
Registers the metadata for an element key.
|
Element |
Element.removeElement(ElementKey<?,?> childKey)
Remove child element(s) of a given name.
|
boolean |
Element.removeElement(ElementKey<?,?> childKey,
Element element)
Remove a single child element from this element.
|
ElementCreator |
ElementCreator.replaceElement(ElementKey<?,?> key)
Replaces the existing metadata for a child element.
|
Element |
Element.setElement(ElementKey<?,?> key,
Element element)
Sets the value of the child element(s) with the
key. |
ElementCreator |
ElementCreator.whitelistElements(ElementKey<?,?>... keys)
Whitelists a set of child elements for this element metadata.
|
| Constructor and Description |
|---|
Element(ElementKey<?,?> elementKey)
Construct element and associate with a key.
|
Element(ElementKey<?,?> elementKey,
Element source)
Copy constructor that initializes a new Element instance to be a wrapper
around another element instance.
|
XmlBlob(ElementKey<?,? extends XmlBlob> key)
Constructs a new instance using the specified element key.
|
| Modifier and Type | Field and Description |
|---|---|
static ElementKey<String,TextContent> |
TextContent.CONSTRUCT
The key for TextContent used as a construct.
|
static ElementKey<Void,Source> |
Source.CONSTRUCT
The key for Source used as a construct.
|
static ElementKey<String,Content> |
Content.CONSTRUCT
The key for Content used as a construct.
|
static ElementKey<String,XmlBlob> |
TextContent.DIV
The key for xhtml:div.
|
static ElementKey<String,Element> |
Person.EMAIL
The atom:email element.
|
static ElementKey<URI,Element> |
Source.ICON
atom:icon
|
static ElementKey<String,Element> |
Source.ID
The atom:id element.
|
static ElementKey<String,Element> |
Entry.ID
The atom:id child element
|
static ElementKey<Integer,Element> |
Feed.ITEMS_PER_PAGE
The opensearch:itemsPerPage element.
|
static ElementKey<String,TextContent> |
TextContent.KEY
The key for atom:content when it contains TextContent.
|
static ElementKey<Void,Source> |
Source.KEY
The key for this element.
|
static ElementKey<String,Source.Generator> |
Source.Generator.KEY
The key for this element.
|
static ElementKey<Void,Person> |
Person.KEY
The key for person constructs.
|
static ElementKey<String,OutOfLineContent> |
OutOfLineContent.KEY
The key for this element.
|
static ElementKey<String,OtherContent> |
OtherContent.KEY
The key for this element.
|
static ElementKey<Void,Link> |
Link.KEY
The key for this element.
|
static ElementKey<Void,Feed> |
Feed.KEY
The key for this element.
|
static ElementKey<Void,Entry> |
Entry.KEY
The key for this element.
|
static ElementKey<Void,Contributor> |
Contributor.KEY
The key for this element.
|
static ElementKey<String,Content> |
Content.KEY
The key for a Content element used as atom:content.
|
static ElementKey<Void,Category> |
Category.KEY
The key for this element.
|
static ElementKey<Void,Author> |
Author.KEY
The key for this element.
|
static ElementKey<URI,Element> |
Source.LOGO
atom:logo
|
static ElementKey<String,Element> |
Person.NAME
The atom:name element.
|
static ElementKey<DateTime,Element> |
Entry.PUBLISHED
The atom:published child element
|
static ElementKey<String,TextContent> |
Source.RIGHTS
atom:rights
|
static ElementKey<String,TextContent> |
Entry.RIGHTS
The atom:rights child element
|
static ElementKey<Integer,Element> |
Feed.START_INDEX
The opensearch:startIndex element.
|
static ElementKey<String,TextContent> |
Source.SUBTITLE
atom:subtitle
|
static ElementKey<String,TextContent> |
Entry.SUMMARY
The atom:summary child element.
|
static ElementKey<String,TextContent> |
Source.TITLE
atom:title
|
static ElementKey<String,TextContent> |
Entry.TITLE
The atom:title child element
|
static ElementKey<Integer,Element> |
Feed.TOTAL_RESULTS
The opensearch:totalResults element.
|
static ElementKey<DateTime,Element> |
Source.UPDATED
atom:updated
|
static ElementKey<DateTime,Element> |
Entry.UPDATED
The atom:updated child element
|
static ElementKey<URI,Element> |
Person.URI
The atom:uri.
|
| Modifier and Type | Method and Description |
|---|---|
<E extends Entry> |
Feed.createEntry(ElementKey<?,E> entryKey)
Creates a new entry for the feed.
|
protected <T extends Entry> |
Feed.getEntries(ElementKey<?,T> key)
Returns a list of entries matching the given entry key.
|
| Constructor and Description |
|---|
Author(ElementKey<?,?> key)
Lets subclasses create an instance using a custom key.
|
Author(ElementKey<?,? extends Author> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Category(ElementKey<?,? extends Category> key)
Constructs a new category instance using the specified element key.
|
Category(ElementKey<?,? extends Category> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Content(ElementKey<?,?> key)
Constructs a new instance using the specified element metadata.
|
Content(ElementKey<?,?> key,
Element source)
Constructs a new instance using the specified element key and the source
Element instance's data (attributes, child elements, text content). |
Contributor(ElementKey<?,?> key)
Constructs a new Contributor instance with the given metadata.
|
Contributor(ElementKey<?,? extends Contributor> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Entry(ElementKey<?,? extends Entry> key)
Constructs a new Entry instance, using the given key.
|
Entry(ElementKey<?,? extends Entry> key,
Entry source)
Copy constructor that initializes a new Entry instance to have identical
contents to another instance, using a shared reference to the same
Entry.EntryState. |
Feed(ElementKey<?,? extends Feed> key)
Creates a new feed instance using the specified metadata.
|
Feed(ElementKey<?,? extends Feed> key,
Feed source)
Copy constructor that initializes a new Feed instance to have identical
contents to another instance, using a shared reference to the same
Feed.FeedState. |
Link(ElementKey<?,? extends Link> key)
Constructs a new instance using the specified element metadata.
|
Link(ElementKey<?,? extends Link> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
OtherContent(ElementKey<?,?> key)
Constructs a new instance using the specified element key.
|
OutOfLineContent(ElementKey<?,?> key)
Constructs a new instance using the specified element metadata.
|
Person(ElementKey<?,?> key)
Lets subclasses create an instance using custom metadata.
|
Person(ElementKey<?,?> key,
String name)
Constructs a new Person instance with the specified name
and key.
|
Person(ElementKey<?,?> key,
String name,
URI uri,
String email)
Constructs a new Person instance with the specified name, URI,
and email address.
|
Person(ElementKey<?,? extends Person> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Source.Generator(ElementKey<?,? extends Source.Generator> key)
Constructs a new instance using the specified element metadata.
|
Source(ElementKey<?,? extends Source> key)
Constructs a new instance using the specified element metadata.
|
Source(ElementKey<?,? extends Source> key,
Element source)
Copy constructor that initializes a new Source instance to have identical
contents to another element, using a shared state.
|
TextContent(ElementKey<?,?> key)
Constructs a new instance using the specified key.
|
TextContent(ElementKey<?,?> key,
Content content)
Constructs a new instance from a more generic
Content type. |
| Modifier and Type | Field and Description |
|---|---|
static ElementKey<Void,Workspace> |
Workspace.KEY
The key for this element.
|
static ElementKey<Void,ServiceDocument> |
ServiceDocument.KEY
The key for this element.
|
static ElementKey<DateTime,Edited> |
Edited.KEY
The key for this element.
|
static ElementKey<Draft.Value,Draft> |
Draft.KEY
The key for this element.
|
static ElementKey<Void,Control> |
Control.KEY
The key for this element.
|
static ElementKey<Void,Collection> |
Collection.KEY
The key for this element.
|
static ElementKey<Void,Categories> |
Categories.KEY
The key for this element.
|
static ElementKey<String,Accept> |
Accept.KEY
The key for this element.
|
| Constructor and Description |
|---|
Accept(ElementKey<String,? extends Accept> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Accept(ElementKey<String,? extends Accept> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Categories(ElementKey<?,? extends Categories> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Categories(ElementKey<?,? extends Categories> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Collection(ElementKey<?,? extends Collection> key)
Lets subclasses create an instance using a custom key.
|
Collection(ElementKey<?,? extends Collection> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Control(ElementKey<?,? extends Control> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Control(ElementKey<?,? extends Control> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Draft(ElementKey<Draft.Value,? extends Draft> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Draft(ElementKey<Draft.Value,? extends Draft> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Edited(ElementKey<DateTime,? extends Edited> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Edited(ElementKey<DateTime,? extends Edited> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
ServiceDocument(ElementKey<?,? extends ServiceDocument> key)
Subclass constructor, allows subclasses to supply their own element key.
|
ServiceDocument(ElementKey<?,? extends ServiceDocument> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Workspace(ElementKey<?,? extends Workspace> key)
Lets subclasses create an instance using custom key.
|
Workspace(ElementKey<?,? extends Workspace> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
| Modifier and Type | Field and Description |
|---|---|
static ElementKey<String,BatchStatus> |
BatchStatus.KEY
The key for this element.
|
static ElementKey<Void,BatchOperation> |
BatchOperation.KEY
The key for this element.
|
static ElementKey<String,BatchInterrupted> |
BatchInterrupted.KEY
The key for this element.
|
static ElementKey<String,BatchId> |
BatchId.KEY
The key for this element.
|
| Modifier and Type | Field and Description |
|---|---|
static ElementKey<Void,Who> |
Who.KEY
The key for this element.
|
static ElementKey<Void,Where> |
Where.KEY
The key for this element.
|
static ElementKey<Void,When> |
When.KEY
The key for this element.
|
static ElementKey<Void,Visibility> |
Visibility.KEY
The key for this element.
|
static ElementKey<Void,Transparency> |
Transparency.KEY
The key for this element.
|
static ElementKey<String,Subregion> |
Subregion.KEY
The key for this element.
|
static ElementKey<Void,StructuredPostalAddress> |
StructuredPostalAddress.KEY
The key for this element.
|
static ElementKey<String,Street> |
Street.KEY
The key for this element.
|
static ElementKey<String,ResourceId> |
ResourceId.KEY
The key for this element.
|
static ElementKey<Void,Reminder> |
Reminder.KEY
The key for this element.
|
static ElementKey<String,Region> |
Region.KEY
The key for this element.
|
static ElementKey<Void,RecurrenceExceptionEntryLink> |
RecurrenceExceptionEntryLink.KEY
The key for this element.
|
static ElementKey<Void,RecurrenceExceptionEntry> |
RecurrenceExceptionEntry.KEY
The key for this element.
|
static ElementKey<Void,RecurrenceException> |
RecurrenceException.KEY
The key for this element.
|
static ElementKey<String,Recurrence> |
Recurrence.KEY
The key for this element.
|
static ElementKey<Void,Rating> |
Rating.KEY
The key for this element.
|
static ElementKey<Long,QuotaBytesUsed> |
QuotaBytesUsed.KEY
The key for this element.
|
static ElementKey<Long,QuotaBytesTotal> |
QuotaBytesTotal.KEY
The key for this element.
|
static ElementKey<String,PostCode> |
PostCode.KEY
The key for this element.
|
static ElementKey<String,PostalAddress> |
PostalAddress.KEY
The key for this element.
|
static ElementKey<String,PoBox> |
PoBox.KEY
The key for this element.
|
static ElementKey<String,PhoneNumber> |
PhoneNumber.KEY
The key for this element.
|
static ElementKey<Void,OriginalEvent> |
OriginalEvent.KEY
The key for this element.
|
static ElementKey<String,OrgTitle> |
OrgTitle.KEY
The key for this element.
|
static ElementKey<String,OrgSymbol> |
OrgSymbol.KEY
The key for this element.
|
static ElementKey<String,OrgName> |
OrgName.KEY
The key for this element.
|
static ElementKey<String,OrgJobDescription> |
OrgJobDescription.KEY
The key for this element.
|
static ElementKey<String,OrgDepartment> |
OrgDepartment.KEY
The key for this element.
|
static ElementKey<Void,Organization> |
Organization.KEY
The key for this element.
|
static ElementKey<Void,Ordering> |
Ordering.KEY
The key for this element.
|
static ElementKey<String,Neighborhood> |
Neighborhood.KEY
The key for this element.
|
static ElementKey<String,NameSuffix> |
NameSuffix.KEY
The key for this element.
|
static ElementKey<String,NamePrefix> |
NamePrefix.KEY
The key for this element.
|
static ElementKey<Void,Name> |
Name.KEY
The key for this element.
|
static ElementKey<Void,Money> |
Money.KEY
The key for this element.
|
static ElementKey<Void,MessageFeed> |
MessageFeed.KEY
The key for this element.
|
static ElementKey<Void,MessageEntry> |
MessageEntry.KEY
The key for this element.
|
static ElementKey<DateTime,LastViewed> |
LastViewed.KEY
The key for this element.
|
static ElementKey<Void,LastModifiedBy> |
LastModifiedBy.KEY
The key for this element.
|
static ElementKey<Void,Im> |
Im.KEY
The key for this element.
|
static ElementKey<String,HouseName> |
HouseName.KEY
The key for this element.
|
static ElementKey<String,GivenName> |
GivenName.KEY
The key for this element.
|
static ElementKey<Void,GeoPt> |
GeoPt.KEY
The key for this element.
|
static ElementKey<String,FullName> |
FullName.KEY
The key for this element.
|
static ElementKey<String,FormattedAddress> |
FormattedAddress.KEY
The key for this element.
|
static ElementKey<Void,FeedLink> |
FeedLink.KEY
The key for this element.
|
static ElementKey<String,FamilyName> |
FamilyName.KEY
The key for this element.
|
static ElementKey<Void,ExtendedProperty> |
ExtendedProperty.KEY
The key for this element.
|
static ElementKey<Void,EventStatus> |
EventStatus.KEY
The key for this element.
|
static ElementKey<Void,EventFeed> |
EventFeed.KEY
The key for this element.
|
static ElementKey<Void,EventEntry> |
EventEntry.KEY
The key for this element.
|
static ElementKey<Void,EntryLink> |
EntryLink.KEY
The key for this element.
|
static ElementKey<Void,Email> |
Email.KEY
The key for this element.
|
static ElementKey<Void,Deleted> |
Deleted.KEY
The key for this element.
|
static ElementKey<String,CustomProperty> |
CustomProperty.KEY
The key for this element.
|
static ElementKey<String,CreateId> |
CreateId.KEY
The key for this element.
|
static ElementKey<String,Country> |
Country.KEY
The key for this element.
|
static ElementKey<Void,Comments> |
Comments.KEY
The key for this element.
|
static ElementKey<String,City> |
City.KEY
The key for this element.
|
static ElementKey<Void,AttendeeType> |
AttendeeType.KEY
The key for this element.
|
static ElementKey<Void,AttendeeStatus> |
AttendeeStatus.KEY
The key for this element.
|
static ElementKey<String,Agent> |
Agent.KEY
The key for this element.
|
static ElementKey<String,AdditionalName> |
AdditionalName.KEY
The key for this element.
|
| Constructor and Description |
|---|
AdditionalName(ElementKey<String,? extends AdditionalName> key)
Subclass constructor, allows subclasses to supply their own element key.
|
AdditionalName(ElementKey<String,? extends AdditionalName> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Agent(ElementKey<String,? extends Agent> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Agent(ElementKey<String,? extends Agent> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
AttendeeStatus(ElementKey<?,? extends AttendeeStatus> key)
Subclass constructor, allows subclasses to supply their own element key.
|
AttendeeStatus(ElementKey<?,? extends AttendeeStatus> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
AttendeeType(ElementKey<?,? extends AttendeeType> key)
Subclass constructor, allows subclasses to supply their own element key.
|
AttendeeType(ElementKey<?,? extends AttendeeType> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
City(ElementKey<String,? extends City> key)
Subclass constructor, allows subclasses to supply their own element key.
|
City(ElementKey<String,? extends City> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Comments(ElementKey<?,? extends Comments> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Comments(ElementKey<?,? extends Comments> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Country(ElementKey<String,? extends Country> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Country(ElementKey<String,? extends Country> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
CreateId(ElementKey<String,? extends CreateId> key)
Subclass constructor, allows subclasses to supply their own element key.
|
CreateId(ElementKey<String,? extends CreateId> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
CustomProperty(ElementKey<String,? extends CustomProperty> key)
Subclass constructor, allows subclasses to supply their own element key.
|
CustomProperty(ElementKey<String,? extends CustomProperty> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Deleted(ElementKey<?,? extends Deleted> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Deleted(ElementKey<?,? extends Deleted> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Email(ElementKey<?,? extends Email> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Email(ElementKey<?,? extends Email> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
EntryLink(ElementKey<?,? extends EntryLink> key)
Create an instance using a different key.
|
EntryLink(ElementKey<?,? extends EntryLink> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
EventEntry(ElementKey<?,? extends EventEntry> key)
Subclass constructor, allows subclasses to supply their own element key.
|
EventEntry(ElementKey<?,? extends EventEntry> key,
Entry source)
Constructs a new instance by doing a shallow copy of data from an existing
Entry instance. |
EventFeed(ElementKey<?,? extends EventFeed> key)
Subclass constructor, allows subclasses to supply their own element key.
|
EventFeed(ElementKey<?,? extends EventFeed> key,
Feed source)
Constructs a new instance by doing a shallow copy of data from an existing
Feed instance. |
EventStatus(ElementKey<?,? extends EventStatus> key)
Subclass constructor, allows subclasses to supply their own element key.
|
EventStatus(ElementKey<?,? extends EventStatus> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
ExtendedProperty(ElementKey<?,? extends ExtendedProperty> key)
Subclass constructor, allows subclasses to supply their own element key.
|
ExtendedProperty(ElementKey<?,? extends ExtendedProperty> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
FamilyName(ElementKey<String,? extends FamilyName> key)
Subclass constructor, allows subclasses to supply their own element key.
|
FamilyName(ElementKey<String,? extends FamilyName> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
FeedLink(ElementKey<?,? extends FeedLink> key)
Lets subclasses create an instance using a custom key.
|
FeedLink(ElementKey<?,? extends FeedLink> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
FormattedAddress(ElementKey<String,? extends FormattedAddress> key)
Subclass constructor, allows subclasses to supply their own element key.
|
FormattedAddress(ElementKey<String,? extends FormattedAddress> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
FullName(ElementKey<String,? extends FullName> key)
Subclass constructor, allows subclasses to supply their own element key.
|
FullName(ElementKey<String,? extends FullName> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
GeoPt(ElementKey<?,? extends GeoPt> key)
Subclass constructor, allows subclasses to supply their own element key.
|
GeoPt(ElementKey<?,? extends GeoPt> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
GivenName(ElementKey<String,? extends GivenName> key)
Subclass constructor, allows subclasses to supply their own element key.
|
GivenName(ElementKey<String,? extends GivenName> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
HouseName(ElementKey<String,? extends HouseName> key)
Subclass constructor, allows subclasses to supply their own element key.
|
HouseName(ElementKey<String,? extends HouseName> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Im(ElementKey<?,? extends Im> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Im(ElementKey<?,? extends Im> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
LastModifiedBy(ElementKey<?,? extends LastModifiedBy> key)
Subclass constructor, allows subclasses to supply their own element key.
|
LastModifiedBy(ElementKey<?,? extends LastModifiedBy> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
LastViewed(ElementKey<DateTime,? extends LastViewed> key)
Subclass constructor, allows subclasses to supply their own element key.
|
LastViewed(ElementKey<DateTime,? extends LastViewed> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
MessageEntry(ElementKey<?,? extends MessageEntry> key)
Subclass constructor, allows subclasses to supply their own element key.
|
MessageEntry(ElementKey<?,? extends MessageEntry> key,
Entry source)
Constructs a new instance by doing a shallow copy of data from an existing
Entry instance. |
MessageFeed(ElementKey<?,? extends MessageFeed> key)
Subclass constructor, allows subclasses to supply their own element key.
|
MessageFeed(ElementKey<?,? extends MessageFeed> key,
Feed source)
Constructs a new instance by doing a shallow copy of data from an existing
Feed instance. |
Money(ElementKey<?,? extends Money> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Money(ElementKey<?,? extends Money> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Name(ElementKey<?,? extends Name> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Name(ElementKey<?,? extends Name> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
NamePrefix(ElementKey<String,? extends NamePrefix> key)
Subclass constructor, allows subclasses to supply their own element key.
|
NamePrefix(ElementKey<String,? extends NamePrefix> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
NameSuffix(ElementKey<String,? extends NameSuffix> key)
Subclass constructor, allows subclasses to supply their own element key.
|
NameSuffix(ElementKey<String,? extends NameSuffix> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Neighborhood(ElementKey<String,? extends Neighborhood> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Neighborhood(ElementKey<String,? extends Neighborhood> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Ordering(ElementKey<?,? extends Ordering> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Ordering(ElementKey<?,? extends Ordering> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Organization(ElementKey<?,? extends Organization> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Organization(ElementKey<?,? extends Organization> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
OrgDepartment(ElementKey<String,? extends OrgDepartment> key)
Subclass constructor, allows subclasses to supply their own element key.
|
OrgDepartment(ElementKey<String,? extends OrgDepartment> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
OrgJobDescription(ElementKey<String,? extends OrgJobDescription> key)
Subclass constructor, allows subclasses to supply their own element key.
|
OrgJobDescription(ElementKey<String,? extends OrgJobDescription> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
OrgName(ElementKey<String,? extends OrgName> key)
Subclass constructor, allows subclasses to supply their own element key.
|
OrgName(ElementKey<String,? extends OrgName> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
OrgSymbol(ElementKey<String,? extends OrgSymbol> key)
Subclass constructor, allows subclasses to supply their own element key.
|
OrgSymbol(ElementKey<String,? extends OrgSymbol> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
OrgTitle(ElementKey<String,? extends OrgTitle> key)
Subclass constructor, allows subclasses to supply their own element key.
|
OrgTitle(ElementKey<String,? extends OrgTitle> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
OriginalEvent(ElementKey<?,? extends OriginalEvent> key)
Subclass constructor, allows subclasses to supply their own element key.
|
OriginalEvent(ElementKey<?,? extends OriginalEvent> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
PhoneNumber(ElementKey<String,? extends PhoneNumber> key)
Subclass constructor, allows subclasses to supply their own element key.
|
PhoneNumber(ElementKey<String,? extends PhoneNumber> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
PoBox(ElementKey<String,? extends PoBox> key)
Subclass constructor, allows subclasses to supply their own element key.
|
PoBox(ElementKey<String,? extends PoBox> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
PostalAddress(ElementKey<String,? extends PostalAddress> key)
Subclass constructor, allows subclasses to supply their own element key.
|
PostalAddress(ElementKey<String,? extends PostalAddress> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
PostCode(ElementKey<String,? extends PostCode> key)
Subclass constructor, allows subclasses to supply their own element key.
|
PostCode(ElementKey<String,? extends PostCode> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
QuotaBytesTotal(ElementKey<Long,? extends QuotaBytesTotal> key)
Subclass constructor, allows subclasses to supply their own element key.
|
QuotaBytesTotal(ElementKey<Long,? extends QuotaBytesTotal> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
QuotaBytesUsed(ElementKey<Long,? extends QuotaBytesUsed> key)
Subclass constructor, allows subclasses to supply their own element key.
|
QuotaBytesUsed(ElementKey<Long,? extends QuotaBytesUsed> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Rating(ElementKey<?,? extends Rating> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Rating(ElementKey<?,? extends Rating> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Recurrence(ElementKey<String,? extends Recurrence> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Recurrence(ElementKey<String,? extends Recurrence> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
RecurrenceException(ElementKey<?,? extends RecurrenceException> key)
Subclass constructor, allows subclasses to supply their own element key.
|
RecurrenceException(ElementKey<?,? extends RecurrenceException> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
RecurrenceExceptionEntry(ElementKey<?,? extends RecurrenceExceptionEntry> key)
Subclass constructor, allows subclasses to supply their own element key.
|
RecurrenceExceptionEntry(ElementKey<?,? extends RecurrenceExceptionEntry> key,
Entry source)
Constructs a new instance by doing a shallow copy of data from an existing
Entry instance. |
RecurrenceExceptionEntryLink(ElementKey<?,? extends RecurrenceExceptionEntryLink> key)
Subclass constructor, allows subclasses to supply their own element key.
|
RecurrenceExceptionEntryLink(ElementKey<?,? extends RecurrenceExceptionEntryLink> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Region(ElementKey<String,? extends Region> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Region(ElementKey<String,? extends Region> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Reminder(ElementKey<?,? extends Reminder> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Reminder(ElementKey<?,? extends Reminder> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
ResourceId(ElementKey<String,? extends ResourceId> key)
Subclass constructor, allows subclasses to supply their own element key.
|
ResourceId(ElementKey<String,? extends ResourceId> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Street(ElementKey<String,? extends Street> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Street(ElementKey<String,? extends Street> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
StructuredPostalAddress(ElementKey<?,? extends StructuredPostalAddress> key)
Subclass constructor, allows subclasses to supply their own element key.
|
StructuredPostalAddress(ElementKey<?,? extends StructuredPostalAddress> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Subregion(ElementKey<String,? extends Subregion> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Subregion(ElementKey<String,? extends Subregion> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Transparency(ElementKey<?,? extends Transparency> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Transparency(ElementKey<?,? extends Transparency> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Visibility(ElementKey<?,? extends Visibility> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Visibility(ElementKey<?,? extends Visibility> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
When(ElementKey<?,? extends When> key)
Subclass constructor, allows subclasses to supply their own element key.
|
When(ElementKey<?,? extends When> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Where(ElementKey<?,? extends Where> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Where(ElementKey<?,? extends Where> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Who(ElementKey<?,? extends Who> key)
Subclass constructor, allows subclasses to supply their own element key.
|
Who(ElementKey<?,? extends Who> key,
Element source)
Constructs a new instance by doing a shallow copy of data from an existing
Element instance. |
Copyright © 2012. All Rights Reserved.