Package net.opengis.sensorml.x20
Interface InputListType
-
- All Superinterfaces:
AbstractSWEType,org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
InputListTypeImpl
public interface InputListType extends AbstractSWEType
An XML InputListType(@http://www.opengis.net/sensorml/2.0). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classInputListType.FactoryA factory class with static methods for creating instances of this type.static interfaceInputListType.InputAn XML input(@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 InputListType.InputaddNewInput()Appends and returns a new empty value (as xml) as the last "input" elementInputListType.Input[]getInputArray()Gets array of all "input" elementsInputListType.InputgetInputArray(int i)Gets ith "input" elementInputListType.InputinsertNewInput(int i)Inserts and returns a new empty value (as xml) as the ith "input" elementvoidremoveInput(int i)Removes the ith "input" elementvoidsetInputArray(int i, InputListType.Input input)Sets ith "input" elementvoidsetInputArray(InputListType.Input[] inputArray)Sets array of all "input" elementintsizeOfInputArray()Returns number of "input" 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
-
getInputArray
InputListType.Input[] getInputArray()
Gets array of all "input" elements
-
getInputArray
InputListType.Input getInputArray(int i)
Gets ith "input" element
-
sizeOfInputArray
int sizeOfInputArray()
Returns number of "input" element
-
setInputArray
void setInputArray(InputListType.Input[] inputArray)
Sets array of all "input" element
-
setInputArray
void setInputArray(int i, InputListType.Input input)Sets ith "input" element
-
insertNewInput
InputListType.Input insertNewInput(int i)
Inserts and returns a new empty value (as xml) as the ith "input" element
-
addNewInput
InputListType.Input addNewInput()
Appends and returns a new empty value (as xml) as the last "input" element
-
removeInput
void removeInput(int i)
Removes the ith "input" element
-
-