Interface ReferenceListDocument.ReferenceList
-
- All Superinterfaces:
XmlObject,XmlTokenSource
- Enclosing interface:
- ReferenceListDocument
public static interface ReferenceListDocument.ReferenceList extends XmlObject
An XML ReferenceList(@http://www.w3.org/2001/04/xmlenc#). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classReferenceListDocument.ReferenceList.FactoryA factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static SchemaTypetype-
Fields inherited from interface org.apache.xmlbeans.XmlObject
EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReferenceTypeaddNewDataReference()Appends and returns a new empty value (as xml) as the last "DataReference" elementReferenceTypeaddNewKeyReference()Appends and returns a new empty value (as xml) as the last "KeyReference" elementReferenceType[]getDataReferenceArray()Gets array of all "DataReference" elementsReferenceTypegetDataReferenceArray(int i)Gets ith "DataReference" elementReferenceType[]getKeyReferenceArray()Gets array of all "KeyReference" elementsReferenceTypegetKeyReferenceArray(int i)Gets ith "KeyReference" elementReferenceTypeinsertNewDataReference(int i)Inserts and returns a new empty value (as xml) as the ith "DataReference" elementReferenceTypeinsertNewKeyReference(int i)Inserts and returns a new empty value (as xml) as the ith "KeyReference" elementvoidremoveDataReference(int i)Removes the ith "DataReference" elementvoidremoveKeyReference(int i)Removes the ith "KeyReference" elementvoidsetDataReferenceArray(int i, ReferenceType dataReference)Sets ith "DataReference" elementvoidsetDataReferenceArray(ReferenceType[] dataReferenceArray)Sets array of all "DataReference" elementvoidsetKeyReferenceArray(int i, ReferenceType keyReference)Sets ith "KeyReference" elementvoidsetKeyReferenceArray(ReferenceType[] keyReferenceArray)Sets array of all "KeyReference" elementintsizeOfDataReferenceArray()Returns number of "DataReference" elementintsizeOfKeyReferenceArray()Returns number of "KeyReference" 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
-
-
-
-
Field Detail
-
type
static final SchemaType type
-
-
Method Detail
-
getDataReferenceArray
ReferenceType[] getDataReferenceArray()
Gets array of all "DataReference" elements
-
getDataReferenceArray
ReferenceType getDataReferenceArray(int i)
Gets ith "DataReference" element
-
sizeOfDataReferenceArray
int sizeOfDataReferenceArray()
Returns number of "DataReference" element
-
setDataReferenceArray
void setDataReferenceArray(ReferenceType[] dataReferenceArray)
Sets array of all "DataReference" element
-
setDataReferenceArray
void setDataReferenceArray(int i, ReferenceType dataReference)Sets ith "DataReference" element
-
insertNewDataReference
ReferenceType insertNewDataReference(int i)
Inserts and returns a new empty value (as xml) as the ith "DataReference" element
-
addNewDataReference
ReferenceType addNewDataReference()
Appends and returns a new empty value (as xml) as the last "DataReference" element
-
removeDataReference
void removeDataReference(int i)
Removes the ith "DataReference" element
-
getKeyReferenceArray
ReferenceType[] getKeyReferenceArray()
Gets array of all "KeyReference" elements
-
getKeyReferenceArray
ReferenceType getKeyReferenceArray(int i)
Gets ith "KeyReference" element
-
sizeOfKeyReferenceArray
int sizeOfKeyReferenceArray()
Returns number of "KeyReference" element
-
setKeyReferenceArray
void setKeyReferenceArray(ReferenceType[] keyReferenceArray)
Sets array of all "KeyReference" element
-
setKeyReferenceArray
void setKeyReferenceArray(int i, ReferenceType keyReference)Sets ith "KeyReference" element
-
insertNewKeyReference
ReferenceType insertNewKeyReference(int i)
Inserts and returns a new empty value (as xml) as the ith "KeyReference" element
-
addNewKeyReference
ReferenceType addNewKeyReference()
Appends and returns a new empty value (as xml) as the last "KeyReference" element
-
removeKeyReference
void removeKeyReference(int i)
Removes the ith "KeyReference" element
-
-