Interface CTExternalDefinedNames
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTExternalDefinedNames extends XmlObject
An XML CT_ExternalDefinedNames(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Field Summary
Fields Modifier and Type Field Description static DocumentFactory<CTExternalDefinedNames>Factorystatic 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 CTExternalDefinedNameaddNewDefinedName()Appends and returns a new empty value (as xml) as the last "definedName" elementCTExternalDefinedName[]getDefinedNameArray()Gets array of all "definedName" elementsCTExternalDefinedNamegetDefinedNameArray(int i)Gets ith "definedName" elementjava.util.List<CTExternalDefinedName>getDefinedNameList()Gets a List of "definedName" elementsCTExternalDefinedNameinsertNewDefinedName(int i)Inserts and returns a new empty value (as xml) as the ith "definedName" elementvoidremoveDefinedName(int i)Removes the ith "definedName" elementvoidsetDefinedNameArray(int i, CTExternalDefinedName definedName)Sets ith "definedName" elementvoidsetDefinedNameArray(CTExternalDefinedName[] definedNameArray)Sets array of all "definedName" elementintsizeOfDefinedNameArray()Returns number of "definedName" 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, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
Factory
static final DocumentFactory<CTExternalDefinedNames> Factory
-
type
static final SchemaType type
-
-
Method Detail
-
getDefinedNameList
java.util.List<CTExternalDefinedName> getDefinedNameList()
Gets a List of "definedName" elements
-
getDefinedNameArray
CTExternalDefinedName[] getDefinedNameArray()
Gets array of all "definedName" elements
-
getDefinedNameArray
CTExternalDefinedName getDefinedNameArray(int i)
Gets ith "definedName" element
-
sizeOfDefinedNameArray
int sizeOfDefinedNameArray()
Returns number of "definedName" element
-
setDefinedNameArray
void setDefinedNameArray(CTExternalDefinedName[] definedNameArray)
Sets array of all "definedName" element
-
setDefinedNameArray
void setDefinedNameArray(int i, CTExternalDefinedName definedName)Sets ith "definedName" element
-
insertNewDefinedName
CTExternalDefinedName insertNewDefinedName(int i)
Inserts and returns a new empty value (as xml) as the ith "definedName" element
-
addNewDefinedName
CTExternalDefinedName addNewDefinedName()
Appends and returns a new empty value (as xml) as the last "definedName" element
-
removeDefinedName
void removeDefinedName(int i)
Removes the ith "definedName" element
-
-