Interface CTExtensionList
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTExtensionList extends XmlObject
An XML CT_ExtensionList(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCTExtensionList.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 Deprecated Methods Modifier and Type Method Description CTExtensionaddNewExt()Appends and returns a new empty value (as xml) as the last "ext" elementCTExtension[]getExtArray()Deprecated.CTExtensiongetExtArray(int i)Gets ith "ext" elementjava.util.List<CTExtension>getExtList()Gets a List of "ext" elementsCTExtensioninsertNewExt(int i)Inserts and returns a new empty value (as xml) as the ith "ext" elementvoidremoveExt(int i)Removes the ith "ext" elementvoidsetExtArray(int i, CTExtension ext)Sets ith "ext" elementvoidsetExtArray(CTExtension[] extArray)Sets array of all "ext" elementintsizeOfExtArray()Returns number of "ext" 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
-
getExtList
java.util.List<CTExtension> getExtList()
Gets a List of "ext" elements
-
getExtArray
@Deprecated CTExtension[] getExtArray()
Deprecated.Gets array of all "ext" elements
-
getExtArray
CTExtension getExtArray(int i)
Gets ith "ext" element
-
sizeOfExtArray
int sizeOfExtArray()
Returns number of "ext" element
-
setExtArray
void setExtArray(CTExtension[] extArray)
Sets array of all "ext" element
-
setExtArray
void setExtArray(int i, CTExtension ext)Sets ith "ext" element
-
insertNewExt
CTExtension insertNewExt(int i)
Inserts and returns a new empty value (as xml) as the ith "ext" element
-
addNewExt
CTExtension addNewExt()
Appends and returns a new empty value (as xml) as the last "ext" element
-
removeExt
void removeExt(int i)
Removes the ith "ext" element
-
-