Interface CTSets
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTSets extends XmlObject
An XML CT_Sets(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTSets.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 CTSet
addNewSet()
Appends and returns a new empty value (as xml) as the last "set" elementlong
getCount()
Gets the "count" attributeCTSet[]
getSetArray()
Deprecated.CTSet
getSetArray(int i)
Gets ith "set" elementjava.util.List<CTSet>
getSetList()
Gets a List of "set" elementsCTSet
insertNewSet(int i)
Inserts and returns a new empty value (as xml) as the ith "set" elementboolean
isSetCount()
True if has "count" attributevoid
removeSet(int i)
Removes the ith "set" elementvoid
setCount(long count)
Sets the "count" attributevoid
setSetArray(int i, CTSet set)
Sets ith "set" elementvoid
setSetArray(CTSet[] setArray)
Sets array of all "set" elementint
sizeOfSetArray()
Returns number of "set" elementvoid
unsetCount()
Unsets the "count" attributeXmlUnsignedInt
xgetCount()
Gets (as xml) the "count" attributevoid
xsetCount(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, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
type
static final SchemaType type
-
-
Method Detail
-
getSetList
java.util.List<CTSet> getSetList()
Gets a List of "set" elements
-
getSetArray
@Deprecated CTSet[] getSetArray()
Deprecated.Gets array of all "set" elements
-
getSetArray
CTSet getSetArray(int i)
Gets ith "set" element
-
sizeOfSetArray
int sizeOfSetArray()
Returns number of "set" element
-
setSetArray
void setSetArray(CTSet[] setArray)
Sets array of all "set" element
-
setSetArray
void setSetArray(int i, CTSet set)
Sets ith "set" element
-
insertNewSet
CTSet insertNewSet(int i)
Inserts and returns a new empty value (as xml) as the ith "set" element
-
addNewSet
CTSet addNewSet()
Appends and returns a new empty value (as xml) as the last "set" element
-
removeSet
void removeSet(int i)
Removes the ith "set" 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
-
-