Package net.opengis.sensorml.x20
Interface DocumentListType
-
- All Superinterfaces:
AbstractMetadataListType,AbstractSWEIdentifiableType,AbstractSWEType,org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
DocumentListTypeImpl
public interface DocumentListType extends AbstractMetadataListType
An XML DocumentListType(@http://www.opengis.net/sensorml/2.0). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classDocumentListType.FactoryA factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static org.apache.xmlbeans.SchemaTypetype
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CIOnlineResourcePropertyTypeaddNewDocument()Appends and returns a new empty value (as xml) as the last "document" elementCIOnlineResourcePropertyType[]getDocumentArray()Gets array of all "document" elementsCIOnlineResourcePropertyTypegetDocumentArray(int i)Gets ith "document" elementCIOnlineResourcePropertyTypeinsertNewDocument(int i)Inserts and returns a new empty value (as xml) as the ith "document" elementvoidremoveDocument(int i)Removes the ith "document" elementvoidsetDocumentArray(int i, CIOnlineResourcePropertyType document)Sets ith "document" elementvoidsetDocumentArray(CIOnlineResourcePropertyType[] documentArray)Sets array of all "document" elementintsizeOfDocumentArray()Returns number of "document" element-
Methods inherited from interface net.opengis.sensorml.x20.AbstractMetadataListType
getDefinition, isSetDefinition, setDefinition, unsetDefinition, xgetDefinition, xsetDefinition
-
Methods inherited from interface net.opengis.swe.x20.AbstractSWEIdentifiableType
getDescription, getIdentifier, getLabel, isSetDescription, isSetIdentifier, isSetLabel, setDescription, setIdentifier, setLabel, unsetDescription, unsetIdentifier, unsetLabel, xgetDescription, xgetIdentifier, xgetLabel, xsetDescription, xsetIdentifier, xsetLabel
-
Methods inherited from interface net.opengis.swe.x20.AbstractSWEType
addNewExtension, getExtensionArray, getExtensionArray, getId, insertNewExtension, isSetId, removeExtension, setExtensionArray, setExtensionArray, setId, sizeOfExtensionArray, unsetId, xgetId, xsetId
-
Methods inherited from interface org.apache.xmlbeans.XmlObject
changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode
-
Methods inherited from interface org.apache.xmlbeans.XmlTokenSource
documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Method Detail
-
getDocumentArray
CIOnlineResourcePropertyType[] getDocumentArray()
Gets array of all "document" elements
-
getDocumentArray
CIOnlineResourcePropertyType getDocumentArray(int i)
Gets ith "document" element
-
sizeOfDocumentArray
int sizeOfDocumentArray()
Returns number of "document" element
-
setDocumentArray
void setDocumentArray(CIOnlineResourcePropertyType[] documentArray)
Sets array of all "document" element
-
setDocumentArray
void setDocumentArray(int i, CIOnlineResourcePropertyType document)Sets ith "document" element
-
insertNewDocument
CIOnlineResourcePropertyType insertNewDocument(int i)
Inserts and returns a new empty value (as xml) as the ith "document" element
-
addNewDocument
CIOnlineResourcePropertyType addNewDocument()
Appends and returns a new empty value (as xml) as the last "document" element
-
removeDocument
void removeDocument(int i)
Removes the ith "document" element
-
-