Interface CTPivotCaches
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTPivotCaches extends XmlObject
An XML CT_PivotCaches(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTPivotCaches.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 CTPivotCache
addNewPivotCache()
Appends and returns a new empty value (as xml) as the last "pivotCache" elementCTPivotCache[]
getPivotCacheArray()
Deprecated.CTPivotCache
getPivotCacheArray(int i)
Gets ith "pivotCache" elementjava.util.List<CTPivotCache>
getPivotCacheList()
Gets a List of "pivotCache" elementsCTPivotCache
insertNewPivotCache(int i)
Inserts and returns a new empty value (as xml) as the ith "pivotCache" elementvoid
removePivotCache(int i)
Removes the ith "pivotCache" elementvoid
setPivotCacheArray(int i, CTPivotCache pivotCache)
Sets ith "pivotCache" elementvoid
setPivotCacheArray(CTPivotCache[] pivotCacheArray)
Sets array of all "pivotCache" elementint
sizeOfPivotCacheArray()
Returns number of "pivotCache" 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
-
getPivotCacheList
java.util.List<CTPivotCache> getPivotCacheList()
Gets a List of "pivotCache" elements
-
getPivotCacheArray
@Deprecated CTPivotCache[] getPivotCacheArray()
Deprecated.Gets array of all "pivotCache" elements
-
getPivotCacheArray
CTPivotCache getPivotCacheArray(int i)
Gets ith "pivotCache" element
-
sizeOfPivotCacheArray
int sizeOfPivotCacheArray()
Returns number of "pivotCache" element
-
setPivotCacheArray
void setPivotCacheArray(CTPivotCache[] pivotCacheArray)
Sets array of all "pivotCache" element
-
setPivotCacheArray
void setPivotCacheArray(int i, CTPivotCache pivotCache)
Sets ith "pivotCache" element
-
insertNewPivotCache
CTPivotCache insertNewPivotCache(int i)
Inserts and returns a new empty value (as xml) as the ith "pivotCache" element
-
addNewPivotCache
CTPivotCache addNewPivotCache()
Appends and returns a new empty value (as xml) as the last "pivotCache" element
-
removePivotCache
void removePivotCache(int i)
Removes the ith "pivotCache" element
-
-