Interface CTPivotFilters
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTPivotFilters extends XmlObject
An XML CT_PivotFilters(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Field Summary
Fields Modifier and Type Field Description static DocumentFactory<CTPivotFilters>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 CTPivotFilteraddNewFilter()Appends and returns a new empty value (as xml) as the last "filter" elementlonggetCount()Gets the "count" attributeCTPivotFilter[]getFilterArray()Gets array of all "filter" elementsCTPivotFiltergetFilterArray(int i)Gets ith "filter" elementjava.util.List<CTPivotFilter>getFilterList()Gets a List of "filter" elementsCTPivotFilterinsertNewFilter(int i)Inserts and returns a new empty value (as xml) as the ith "filter" elementbooleanisSetCount()True if has "count" attributevoidremoveFilter(int i)Removes the ith "filter" elementvoidsetCount(long count)Sets the "count" attributevoidsetFilterArray(int i, CTPivotFilter filter)Sets ith "filter" elementvoidsetFilterArray(CTPivotFilter[] filterArray)Sets array of all "filter" elementintsizeOfFilterArray()Returns number of "filter" elementvoidunsetCount()Unsets the "count" attributeXmlUnsignedIntxgetCount()Gets (as xml) the "count" attributevoidxsetCount(XmlUnsignedInt count)Sets (as xml) the "count" attribute-
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<CTPivotFilters> Factory
-
type
static final SchemaType type
-
-
Method Detail
-
getFilterList
java.util.List<CTPivotFilter> getFilterList()
Gets a List of "filter" elements
-
getFilterArray
CTPivotFilter[] getFilterArray()
Gets array of all "filter" elements
-
getFilterArray
CTPivotFilter getFilterArray(int i)
Gets ith "filter" element
-
sizeOfFilterArray
int sizeOfFilterArray()
Returns number of "filter" element
-
setFilterArray
void setFilterArray(CTPivotFilter[] filterArray)
Sets array of all "filter" element
-
setFilterArray
void setFilterArray(int i, CTPivotFilter filter)Sets ith "filter" element
-
insertNewFilter
CTPivotFilter insertNewFilter(int i)
Inserts and returns a new empty value (as xml) as the ith "filter" element
-
addNewFilter
CTPivotFilter addNewFilter()
Appends and returns a new empty value (as xml) as the last "filter" element
-
removeFilter
void removeFilter(int i)
Removes the ith "filter" element
-
getCount
long getCount()
Gets the "count" attribute
-
xgetCount
XmlUnsignedInt xgetCount()
Gets (as xml) the "count" attribute
-
isSetCount
boolean isSetCount()
True if has "count" attribute
-
setCount
void setCount(long count)
Sets the "count" attribute
-
xsetCount
void xsetCount(XmlUnsignedInt count)
Sets (as xml) the "count" attribute
-
unsetCount
void unsetCount()
Unsets the "count" attribute
-
-