Package net.opengis.swe.x20
Interface DataChoiceType
-
- All Superinterfaces:
AbstractDataComponentType,AbstractSWEIdentifiableType,AbstractSWEType,org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
DataChoiceTypeImpl
public interface DataChoiceType extends AbstractDataComponentType
An XML DataChoiceType(@http://www.opengis.net/swe/2.0). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceDataChoiceType.ChoiceValueAn XML choiceValue(@http://www.opengis.net/swe/2.0).static classDataChoiceType.FactoryA factory class with static methods for creating instances of this type.static interfaceDataChoiceType.ItemAn XML item(@http://www.opengis.net/swe/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 DataChoiceType.ChoiceValueaddNewChoiceValue()Appends and returns a new empty "choiceValue" elementDataChoiceType.ItemaddNewItem()Appends and returns a new empty value (as xml) as the last "item" elementDataChoiceType.ChoiceValuegetChoiceValue()Gets the "choiceValue" elementDataChoiceType.Item[]getItemArray()Gets array of all "item" elementsDataChoiceType.ItemgetItemArray(int i)Gets ith "item" elementDataChoiceType.IteminsertNewItem(int i)Inserts and returns a new empty value (as xml) as the ith "item" elementbooleanisSetChoiceValue()True if has "choiceValue" elementvoidremoveItem(int i)Removes the ith "item" elementvoidsetChoiceValue(DataChoiceType.ChoiceValue choiceValue)Sets the "choiceValue" elementvoidsetItemArray(int i, DataChoiceType.Item item)Sets ith "item" elementvoidsetItemArray(DataChoiceType.Item[] itemArray)Sets array of all "item" elementintsizeOfItemArray()Returns number of "item" elementvoidunsetChoiceValue()Unsets the "choiceValue" element-
Methods inherited from interface net.opengis.swe.x20.AbstractDataComponentType
getDefinition, getOptional, getUpdatable, isSetDefinition, isSetOptional, isSetUpdatable, setDefinition, setOptional, setUpdatable, unsetDefinition, unsetOptional, unsetUpdatable, xgetDefinition, xgetOptional, xgetUpdatable, xsetDefinition, xsetOptional, xsetUpdatable
-
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
-
getChoiceValue
DataChoiceType.ChoiceValue getChoiceValue()
Gets the "choiceValue" element
-
isSetChoiceValue
boolean isSetChoiceValue()
True if has "choiceValue" element
-
setChoiceValue
void setChoiceValue(DataChoiceType.ChoiceValue choiceValue)
Sets the "choiceValue" element
-
addNewChoiceValue
DataChoiceType.ChoiceValue addNewChoiceValue()
Appends and returns a new empty "choiceValue" element
-
unsetChoiceValue
void unsetChoiceValue()
Unsets the "choiceValue" element
-
getItemArray
DataChoiceType.Item[] getItemArray()
Gets array of all "item" elements
-
getItemArray
DataChoiceType.Item getItemArray(int i)
Gets ith "item" element
-
sizeOfItemArray
int sizeOfItemArray()
Returns number of "item" element
-
setItemArray
void setItemArray(DataChoiceType.Item[] itemArray)
Sets array of all "item" element
-
setItemArray
void setItemArray(int i, DataChoiceType.Item item)Sets ith "item" element
-
insertNewItem
DataChoiceType.Item insertNewItem(int i)
Inserts and returns a new empty value (as xml) as the ith "item" element
-
addNewItem
DataChoiceType.Item addNewItem()
Appends and returns a new empty value (as xml) as the last "item" element
-
removeItem
void removeItem(int i)
Removes the ith "item" element
-
-