Package net.opengis.wcs.x11
Interface AxisSubsetDocument.AxisSubset
-
- All Superinterfaces:
org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
AxisSubsetDocumentImpl.AxisSubsetImpl
- Enclosing interface:
- AxisSubsetDocument
public static interface AxisSubsetDocument.AxisSubset extends org.apache.xmlbeans.XmlObjectAn XML AxisSubset(@http://www.opengis.net/wcs/1.1). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAxisSubsetDocument.AxisSubset.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 voidaddKey(String key)Appends the value as the last "Key" elementIdentifierTypeaddNewKey()Appends and returns a new empty value (as xml) as the last "Key" elementStringgetIdentifier()Gets the "Identifier" elementString[]getKeyArray()Gets array of all "Key" elementsStringgetKeyArray(int i)Gets ith "Key" elementvoidinsertKey(int i, String key)Inserts the value as the ith "Key" elementIdentifierTypeinsertNewKey(int i)Inserts and returns a new empty value (as xml) as the ith "Key" elementvoidremoveKey(int i)Removes the ith "Key" elementvoidsetIdentifier(String identifier)Sets the "Identifier" elementvoidsetKeyArray(int i, String key)Sets ith "Key" elementvoidsetKeyArray(String[] keyArray)Sets array of all "Key" elementintsizeOfKeyArray()Returns number of "Key" elementIdentifierTypexgetIdentifier()Gets (as xml) the "Identifier" elementIdentifierType[]xgetKeyArray()Gets (as xml) array of all "Key" elementsIdentifierTypexgetKeyArray(int i)Gets (as xml) ith "Key" elementvoidxsetIdentifier(IdentifierType identifier)Sets (as xml) the "Identifier" elementvoidxsetKeyArray(int i, IdentifierType key)Sets (as xml) ith "Key" elementvoidxsetKeyArray(IdentifierType[] keyArray)Sets (as xml) array of all "Key" 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
-
getIdentifier
String getIdentifier()
Gets the "Identifier" element
-
xgetIdentifier
IdentifierType xgetIdentifier()
Gets (as xml) the "Identifier" element
-
setIdentifier
void setIdentifier(String identifier)
Sets the "Identifier" element
-
xsetIdentifier
void xsetIdentifier(IdentifierType identifier)
Sets (as xml) the "Identifier" element
-
getKeyArray
String[] getKeyArray()
Gets array of all "Key" elements
-
getKeyArray
String getKeyArray(int i)
Gets ith "Key" element
-
xgetKeyArray
IdentifierType[] xgetKeyArray()
Gets (as xml) array of all "Key" elements
-
xgetKeyArray
IdentifierType xgetKeyArray(int i)
Gets (as xml) ith "Key" element
-
sizeOfKeyArray
int sizeOfKeyArray()
Returns number of "Key" element
-
setKeyArray
void setKeyArray(String[] keyArray)
Sets array of all "Key" element
-
setKeyArray
void setKeyArray(int i, String key)Sets ith "Key" element
-
xsetKeyArray
void xsetKeyArray(IdentifierType[] keyArray)
Sets (as xml) array of all "Key" element
-
xsetKeyArray
void xsetKeyArray(int i, IdentifierType key)Sets (as xml) ith "Key" element
-
insertKey
void insertKey(int i, String key)Inserts the value as the ith "Key" element
-
addKey
void addKey(String key)
Appends the value as the last "Key" element
-
insertNewKey
IdentifierType insertNewKey(int i)
Inserts and returns a new empty value (as xml) as the ith "Key" element
-
addNewKey
IdentifierType addNewKey()
Appends and returns a new empty value (as xml) as the last "Key" element
-
removeKey
void removeKey(int i)
Removes the ith "Key" element
-
-