Package net.opengis.sensorml.x20
Interface ClassifierListType
-
- All Superinterfaces:
AbstractMetadataListType,AbstractSWEIdentifiableType,AbstractSWEType,org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
ClassifierListTypeImpl
public interface ClassifierListType extends AbstractMetadataListType
An XML ClassifierListType(@http://www.opengis.net/sensorml/2.0). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceClassifierListType.ClassifierAn XML classifier(@http://www.opengis.net/sensorml/2.0).static classClassifierListType.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 ClassifierListType.ClassifieraddNewClassifier()Appends and returns a new empty value (as xml) as the last "classifier" elementClassifierListType.Classifier[]getClassifierArray()Gets array of all "classifier" elementsClassifierListType.ClassifiergetClassifierArray(int i)Gets ith "classifier" elementClassifierListType.ClassifierinsertNewClassifier(int i)Inserts and returns a new empty value (as xml) as the ith "classifier" elementvoidremoveClassifier(int i)Removes the ith "classifier" elementvoidsetClassifierArray(int i, ClassifierListType.Classifier classifier)Sets ith "classifier" elementvoidsetClassifierArray(ClassifierListType.Classifier[] classifierArray)Sets array of all "classifier" elementintsizeOfClassifierArray()Returns number of "classifier" 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
-
getClassifierArray
ClassifierListType.Classifier[] getClassifierArray()
Gets array of all "classifier" elements
-
getClassifierArray
ClassifierListType.Classifier getClassifierArray(int i)
Gets ith "classifier" element
-
sizeOfClassifierArray
int sizeOfClassifierArray()
Returns number of "classifier" element
-
setClassifierArray
void setClassifierArray(ClassifierListType.Classifier[] classifierArray)
Sets array of all "classifier" element
-
setClassifierArray
void setClassifierArray(int i, ClassifierListType.Classifier classifier)Sets ith "classifier" element
-
insertNewClassifier
ClassifierListType.Classifier insertNewClassifier(int i)
Inserts and returns a new empty value (as xml) as the ith "classifier" element
-
addNewClassifier
ClassifierListType.Classifier addNewClassifier()
Appends and returns a new empty value (as xml) as the last "classifier" element
-
removeClassifier
void removeClassifier(int i)
Removes the ith "classifier" element
-
-