Package net.opengis.ows.x11
Interface AllowedValuesDocument.AllowedValues
-
- All Superinterfaces:
org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
AllowedValuesDocumentImpl.AllowedValuesImpl
- Enclosing interface:
- AllowedValuesDocument
public static interface AllowedValuesDocument.AllowedValues extends org.apache.xmlbeans.XmlObjectAn XML AllowedValues(@http://www.opengis.net/ows/1.1). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAllowedValuesDocument.AllowedValues.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 RangeTypeaddNewRange()Appends and returns a new empty value (as xml) as the last "Range" elementValueTypeaddNewValue()Appends and returns a new empty value (as xml) as the last "Value" elementRangeType[]getRangeArray()Gets array of all "Range" elementsRangeTypegetRangeArray(int i)Gets ith "Range" elementValueType[]getValueArray()Gets array of all "Value" elementsValueTypegetValueArray(int i)Gets ith "Value" elementRangeTypeinsertNewRange(int i)Inserts and returns a new empty value (as xml) as the ith "Range" elementValueTypeinsertNewValue(int i)Inserts and returns a new empty value (as xml) as the ith "Value" elementvoidremoveRange(int i)Removes the ith "Range" elementvoidremoveValue(int i)Removes the ith "Value" elementvoidsetRangeArray(int i, RangeType range)Sets ith "Range" elementvoidsetRangeArray(RangeType[] rangeArray)Sets array of all "Range" elementvoidsetValueArray(int i, ValueType value)Sets ith "Value" elementvoidsetValueArray(ValueType[] valueArray)Sets array of all "Value" elementintsizeOfRangeArray()Returns number of "Range" elementintsizeOfValueArray()Returns number of "Value" element-
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
-
getValueArray
ValueType[] getValueArray()
Gets array of all "Value" elements
-
getValueArray
ValueType getValueArray(int i)
Gets ith "Value" element
-
sizeOfValueArray
int sizeOfValueArray()
Returns number of "Value" element
-
setValueArray
void setValueArray(ValueType[] valueArray)
Sets array of all "Value" element
-
setValueArray
void setValueArray(int i, ValueType value)Sets ith "Value" element
-
insertNewValue
ValueType insertNewValue(int i)
Inserts and returns a new empty value (as xml) as the ith "Value" element
-
addNewValue
ValueType addNewValue()
Appends and returns a new empty value (as xml) as the last "Value" element
-
removeValue
void removeValue(int i)
Removes the ith "Value" element
-
getRangeArray
RangeType[] getRangeArray()
Gets array of all "Range" elements
-
getRangeArray
RangeType getRangeArray(int i)
Gets ith "Range" element
-
sizeOfRangeArray
int sizeOfRangeArray()
Returns number of "Range" element
-
setRangeArray
void setRangeArray(RangeType[] rangeArray)
Sets array of all "Range" element
-
setRangeArray
void setRangeArray(int i, RangeType range)Sets ith "Range" element
-
insertNewRange
RangeType insertNewRange(int i)
Inserts and returns a new empty value (as xml) as the ith "Range" element
-
addNewRange
RangeType addNewRange()
Appends and returns a new empty value (as xml) as the last "Range" element
-
removeRange
void removeRange(int i)
Removes the ith "Range" element
-
-