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 classCTPivotCaches.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 CTPivotCacheaddNewPivotCache()Appends and returns a new empty value (as xml) as the last "pivotCache" elementCTPivotCache[]getPivotCacheArray()Deprecated.CTPivotCachegetPivotCacheArray(int i)Gets ith "pivotCache" elementjava.util.List<CTPivotCache>getPivotCacheList()Gets a List of "pivotCache" elementsCTPivotCacheinsertNewPivotCache(int i)Inserts and returns a new empty value (as xml) as the ith "pivotCache" elementvoidremovePivotCache(int i)Removes the ith "pivotCache" elementvoidsetPivotCacheArray(int i, CTPivotCache pivotCache)Sets ith "pivotCache" elementvoidsetPivotCacheArray(CTPivotCache[] pivotCacheArray)Sets array of all "pivotCache" elementintsizeOfPivotCacheArray()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
-
-