Package net.opengis.wcs.x11
Interface AvailableKeysDocument.AvailableKeys
-
- All Superinterfaces:
org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
AvailableKeysDocumentImpl.AvailableKeysImpl
- Enclosing interface:
- AvailableKeysDocument
public static interface AvailableKeysDocument.AvailableKeys extends org.apache.xmlbeans.XmlObjectAn XML AvailableKeys(@http://www.opengis.net/wcs/1.1). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAvailableKeysDocument.AvailableKeys.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" 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" elementvoidsetKeyArray(int i, String key)Sets ith "Key" elementvoidsetKeyArray(String[] keyArray)Sets array of all "Key" elementintsizeOfKeyArray()Returns number of "Key" elementIdentifierType[]xgetKeyArray()Gets (as xml) array of all "Key" elementsIdentifierTypexgetKeyArray(int i)Gets (as xml) ith "Key" 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
-
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
-
-