Interface CTPivotSource
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTPivotSource extends XmlObject
An XML CT_PivotSource(@http://schemas.openxmlformats.org/drawingml/2006/chart). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTPivotSource.Factory
A factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static SchemaType
type
-
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 CTExtensionList
addNewExtLst()
Appends and returns a new empty value (as xml) as the last "extLst" elementCTUnsignedInt
addNewFmtId()
Appends and returns a new empty "fmtId" elementCTExtensionList[]
getExtLstArray()
Deprecated.CTExtensionList
getExtLstArray(int i)
Gets ith "extLst" elementjava.util.List<CTExtensionList>
getExtLstList()
Gets a List of "extLst" elementsCTUnsignedInt
getFmtId()
Gets the "fmtId" elementjava.lang.String
getName()
Gets the "name" elementCTExtensionList
insertNewExtLst(int i)
Inserts and returns a new empty value (as xml) as the ith "extLst" elementvoid
removeExtLst(int i)
Removes the ith "extLst" elementvoid
setExtLstArray(int i, CTExtensionList extLst)
Sets ith "extLst" elementvoid
setExtLstArray(CTExtensionList[] extLstArray)
Sets array of all "extLst" elementvoid
setFmtId(CTUnsignedInt fmtId)
Sets the "fmtId" elementvoid
setName(java.lang.String name)
Sets the "name" elementint
sizeOfExtLstArray()
Returns number of "extLst" elementSTXstring
xgetName()
Gets (as xml) the "name" elementvoid
xsetName(STXstring name)
Sets (as xml) the "name" 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
-
getName
java.lang.String getName()
Gets the "name" element
-
xgetName
STXstring xgetName()
Gets (as xml) the "name" element
-
setName
void setName(java.lang.String name)
Sets the "name" element
-
xsetName
void xsetName(STXstring name)
Sets (as xml) the "name" element
-
getFmtId
CTUnsignedInt getFmtId()
Gets the "fmtId" element
-
setFmtId
void setFmtId(CTUnsignedInt fmtId)
Sets the "fmtId" element
-
addNewFmtId
CTUnsignedInt addNewFmtId()
Appends and returns a new empty "fmtId" element
-
getExtLstList
java.util.List<CTExtensionList> getExtLstList()
Gets a List of "extLst" elements
-
getExtLstArray
@Deprecated CTExtensionList[] getExtLstArray()
Deprecated.Gets array of all "extLst" elements
-
getExtLstArray
CTExtensionList getExtLstArray(int i)
Gets ith "extLst" element
-
sizeOfExtLstArray
int sizeOfExtLstArray()
Returns number of "extLst" element
-
setExtLstArray
void setExtLstArray(CTExtensionList[] extLstArray)
Sets array of all "extLst" element
-
setExtLstArray
void setExtLstArray(int i, CTExtensionList extLst)
Sets ith "extLst" element
-
insertNewExtLst
CTExtensionList insertNewExtLst(int i)
Inserts and returns a new empty value (as xml) as the ith "extLst" element
-
addNewExtLst
CTExtensionList addNewExtLst()
Appends and returns a new empty value (as xml) as the last "extLst" element
-
removeExtLst
void removeExtLst(int i)
Removes the ith "extLst" element
-
-