Interface CTSingleXmlCells
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTSingleXmlCells extends XmlObject
An XML CT_SingleXmlCells(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTSingleXmlCells.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 CTSingleXmlCell
addNewSingleXmlCell()
Appends and returns a new empty value (as xml) as the last "singleXmlCell" elementCTSingleXmlCell[]
getSingleXmlCellArray()
Deprecated.CTSingleXmlCell
getSingleXmlCellArray(int i)
Gets ith "singleXmlCell" elementjava.util.List<CTSingleXmlCell>
getSingleXmlCellList()
Gets a List of "singleXmlCell" elementsCTSingleXmlCell
insertNewSingleXmlCell(int i)
Inserts and returns a new empty value (as xml) as the ith "singleXmlCell" elementvoid
removeSingleXmlCell(int i)
Removes the ith "singleXmlCell" elementvoid
setSingleXmlCellArray(int i, CTSingleXmlCell singleXmlCell)
Sets ith "singleXmlCell" elementvoid
setSingleXmlCellArray(CTSingleXmlCell[] singleXmlCellArray)
Sets array of all "singleXmlCell" elementint
sizeOfSingleXmlCellArray()
Returns number of "singleXmlCell" 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
-
getSingleXmlCellList
java.util.List<CTSingleXmlCell> getSingleXmlCellList()
Gets a List of "singleXmlCell" elements
-
getSingleXmlCellArray
@Deprecated CTSingleXmlCell[] getSingleXmlCellArray()
Deprecated.Gets array of all "singleXmlCell" elements
-
getSingleXmlCellArray
CTSingleXmlCell getSingleXmlCellArray(int i)
Gets ith "singleXmlCell" element
-
sizeOfSingleXmlCellArray
int sizeOfSingleXmlCellArray()
Returns number of "singleXmlCell" element
-
setSingleXmlCellArray
void setSingleXmlCellArray(CTSingleXmlCell[] singleXmlCellArray)
Sets array of all "singleXmlCell" element
-
setSingleXmlCellArray
void setSingleXmlCellArray(int i, CTSingleXmlCell singleXmlCell)
Sets ith "singleXmlCell" element
-
insertNewSingleXmlCell
CTSingleXmlCell insertNewSingleXmlCell(int i)
Inserts and returns a new empty value (as xml) as the ith "singleXmlCell" element
-
addNewSingleXmlCell
CTSingleXmlCell addNewSingleXmlCell()
Appends and returns a new empty value (as xml) as the last "singleXmlCell" element
-
removeSingleXmlCell
void removeSingleXmlCell(int i)
Removes the ith "singleXmlCell" element
-
-