Package net.opengis.swe.x20
Interface NilValuesType
-
- All Superinterfaces:
AbstractSWEType,org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
NilValuesTypeImpl
public interface NilValuesType extends AbstractSWEType
An XML NilValuesType(@http://www.opengis.net/swe/2.0). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classNilValuesType.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 NilValueaddNewNilValue()Appends and returns a new empty value (as xml) as the last "nilValue" elementNilValue[]getNilValueArray()Gets array of all "nilValue" elementsNilValuegetNilValueArray(int i)Gets ith "nilValue" elementNilValueinsertNewNilValue(int i)Inserts and returns a new empty value (as xml) as the ith "nilValue" elementvoidremoveNilValue(int i)Removes the ith "nilValue" elementvoidsetNilValueArray(int i, NilValue nilValue)Sets ith "nilValue" elementvoidsetNilValueArray(NilValue[] nilValueArray)Sets array of all "nilValue" elementintsizeOfNilValueArray()Returns number of "nilValue" 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
-
getNilValueArray
NilValue[] getNilValueArray()
Gets array of all "nilValue" elements
-
getNilValueArray
NilValue getNilValueArray(int i)
Gets ith "nilValue" element
-
sizeOfNilValueArray
int sizeOfNilValueArray()
Returns number of "nilValue" element
-
setNilValueArray
void setNilValueArray(NilValue[] nilValueArray)
Sets array of all "nilValue" element
-
setNilValueArray
void setNilValueArray(int i, NilValue nilValue)Sets ith "nilValue" element
-
insertNewNilValue
NilValue insertNewNilValue(int i)
Inserts and returns a new empty value (as xml) as the ith "nilValue" element
-
addNewNilValue
NilValue addNewNilValue()
Appends and returns a new empty value (as xml) as the last "nilValue" element
-
removeNilValue
void removeNilValue(int i)
Removes the ith "nilValue" element
-
-