Interface CTFilters
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTFilters extends XmlObject
An XML CT_Filters(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCTFilters.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 CTDateGroupItemaddNewDateGroupItem()Appends and returns a new empty value (as xml) as the last "dateGroupItem" elementCTFilteraddNewFilter()Appends and returns a new empty value (as xml) as the last "filter" elementbooleangetBlank()Gets the "blank" attributeSTCalendarType.EnumgetCalendarType()Gets the "calendarType" attributeCTDateGroupItem[]getDateGroupItemArray()Deprecated.CTDateGroupItemgetDateGroupItemArray(int i)Gets ith "dateGroupItem" elementjava.util.List<CTDateGroupItem>getDateGroupItemList()Gets a List of "dateGroupItem" elementsCTFilter[]getFilterArray()Deprecated.CTFiltergetFilterArray(int i)Gets ith "filter" elementjava.util.List<CTFilter>getFilterList()Gets a List of "filter" elementsCTDateGroupIteminsertNewDateGroupItem(int i)Inserts and returns a new empty value (as xml) as the ith "dateGroupItem" elementCTFilterinsertNewFilter(int i)Inserts and returns a new empty value (as xml) as the ith "filter" elementbooleanisSetBlank()True if has "blank" attributebooleanisSetCalendarType()True if has "calendarType" attributevoidremoveDateGroupItem(int i)Removes the ith "dateGroupItem" elementvoidremoveFilter(int i)Removes the ith "filter" elementvoidsetBlank(boolean blank)Sets the "blank" attributevoidsetCalendarType(STCalendarType.Enum calendarType)Sets the "calendarType" attributevoidsetDateGroupItemArray(int i, CTDateGroupItem dateGroupItem)Sets ith "dateGroupItem" elementvoidsetDateGroupItemArray(CTDateGroupItem[] dateGroupItemArray)Sets array of all "dateGroupItem" elementvoidsetFilterArray(int i, CTFilter filter)Sets ith "filter" elementvoidsetFilterArray(CTFilter[] filterArray)Sets array of all "filter" elementintsizeOfDateGroupItemArray()Returns number of "dateGroupItem" elementintsizeOfFilterArray()Returns number of "filter" elementvoidunsetBlank()Unsets the "blank" attributevoidunsetCalendarType()Unsets the "calendarType" attributeXmlBooleanxgetBlank()Gets (as xml) the "blank" attributeSTCalendarTypexgetCalendarType()Gets (as xml) the "calendarType" attributevoidxsetBlank(XmlBoolean blank)Sets (as xml) the "blank" attributevoidxsetCalendarType(STCalendarType calendarType)Sets (as xml) the "calendarType" 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, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
type
static final SchemaType type
-
-
Method Detail
-
getFilterList
java.util.List<CTFilter> getFilterList()
Gets a List of "filter" elements
-
getFilterArray
@Deprecated CTFilter[] getFilterArray()
Deprecated.Gets array of all "filter" elements
-
getFilterArray
CTFilter getFilterArray(int i)
Gets ith "filter" element
-
sizeOfFilterArray
int sizeOfFilterArray()
Returns number of "filter" element
-
setFilterArray
void setFilterArray(CTFilter[] filterArray)
Sets array of all "filter" element
-
setFilterArray
void setFilterArray(int i, CTFilter filter)Sets ith "filter" element
-
insertNewFilter
CTFilter insertNewFilter(int i)
Inserts and returns a new empty value (as xml) as the ith "filter" element
-
addNewFilter
CTFilter 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
-
getDateGroupItemList
java.util.List<CTDateGroupItem> getDateGroupItemList()
Gets a List of "dateGroupItem" elements
-
getDateGroupItemArray
@Deprecated CTDateGroupItem[] getDateGroupItemArray()
Deprecated.Gets array of all "dateGroupItem" elements
-
getDateGroupItemArray
CTDateGroupItem getDateGroupItemArray(int i)
Gets ith "dateGroupItem" element
-
sizeOfDateGroupItemArray
int sizeOfDateGroupItemArray()
Returns number of "dateGroupItem" element
-
setDateGroupItemArray
void setDateGroupItemArray(CTDateGroupItem[] dateGroupItemArray)
Sets array of all "dateGroupItem" element
-
setDateGroupItemArray
void setDateGroupItemArray(int i, CTDateGroupItem dateGroupItem)Sets ith "dateGroupItem" element
-
insertNewDateGroupItem
CTDateGroupItem insertNewDateGroupItem(int i)
Inserts and returns a new empty value (as xml) as the ith "dateGroupItem" element
-
addNewDateGroupItem
CTDateGroupItem addNewDateGroupItem()
Appends and returns a new empty value (as xml) as the last "dateGroupItem" element
-
removeDateGroupItem
void removeDateGroupItem(int i)
Removes the ith "dateGroupItem" element
-
getBlank
boolean getBlank()
Gets the "blank" attribute
-
xgetBlank
XmlBoolean xgetBlank()
Gets (as xml) the "blank" attribute
-
isSetBlank
boolean isSetBlank()
True if has "blank" attribute
-
setBlank
void setBlank(boolean blank)
Sets the "blank" attribute
-
xsetBlank
void xsetBlank(XmlBoolean blank)
Sets (as xml) the "blank" attribute
-
unsetBlank
void unsetBlank()
Unsets the "blank" attribute
-
getCalendarType
STCalendarType.Enum getCalendarType()
Gets the "calendarType" attribute
-
xgetCalendarType
STCalendarType xgetCalendarType()
Gets (as xml) the "calendarType" attribute
-
isSetCalendarType
boolean isSetCalendarType()
True if has "calendarType" attribute
-
setCalendarType
void setCalendarType(STCalendarType.Enum calendarType)
Sets the "calendarType" attribute
-
xsetCalendarType
void xsetCalendarType(STCalendarType calendarType)
Sets (as xml) the "calendarType" attribute
-
unsetCalendarType
void unsetCalendarType()
Unsets the "calendarType" attribute
-
-