Package net.opengis.sensorml.x20
Interface OutputListType
-
- All Superinterfaces:
AbstractSWEType,org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
OutputListTypeImpl
public interface OutputListType extends AbstractSWEType
An XML OutputListType(@http://www.opengis.net/sensorml/2.0). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classOutputListType.FactoryA factory class with static methods for creating instances of this type.static interfaceOutputListType.OutputAn XML output(@http://www.opengis.net/sensorml/2.0).
-
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 OutputListType.OutputaddNewOutput()Appends and returns a new empty value (as xml) as the last "output" elementOutputListType.Output[]getOutputArray()Gets array of all "output" elementsOutputListType.OutputgetOutputArray(int i)Gets ith "output" elementOutputListType.OutputinsertNewOutput(int i)Inserts and returns a new empty value (as xml) as the ith "output" elementvoidremoveOutput(int i)Removes the ith "output" elementvoidsetOutputArray(int i, OutputListType.Output output)Sets ith "output" elementvoidsetOutputArray(OutputListType.Output[] outputArray)Sets array of all "output" elementintsizeOfOutputArray()Returns number of "output" element-
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
-
getOutputArray
OutputListType.Output[] getOutputArray()
Gets array of all "output" elements
-
getOutputArray
OutputListType.Output getOutputArray(int i)
Gets ith "output" element
-
sizeOfOutputArray
int sizeOfOutputArray()
Returns number of "output" element
-
setOutputArray
void setOutputArray(OutputListType.Output[] outputArray)
Sets array of all "output" element
-
setOutputArray
void setOutputArray(int i, OutputListType.Output output)Sets ith "output" element
-
insertNewOutput
OutputListType.Output insertNewOutput(int i)
Inserts and returns a new empty value (as xml) as the ith "output" element
-
addNewOutput
OutputListType.Output addNewOutput()
Appends and returns a new empty value (as xml) as the last "output" element
-
removeOutput
void removeOutput(int i)
Removes the ith "output" element
-
-