Interface CTExternalRow
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTExternalRow extends XmlObject
An XML CT_ExternalRow(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Field Summary
Fields Modifier and Type Field Description static DocumentFactory<CTExternalRow>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 CTExternalCelladdNewCell()Appends and returns a new empty value (as xml) as the last "cell" elementCTExternalCell[]getCellArray()Gets array of all "cell" elementsCTExternalCellgetCellArray(int i)Gets ith "cell" elementjava.util.List<CTExternalCell>getCellList()Gets a List of "cell" elementslonggetR()Gets the "r" attributeCTExternalCellinsertNewCell(int i)Inserts and returns a new empty value (as xml) as the ith "cell" elementvoidremoveCell(int i)Removes the ith "cell" elementvoidsetCellArray(int i, CTExternalCell cell)Sets ith "cell" elementvoidsetCellArray(CTExternalCell[] cellArray)Sets array of all "cell" elementvoidsetR(long r)Sets the "r" attributeintsizeOfCellArray()Returns number of "cell" elementXmlUnsignedIntxgetR()Gets (as xml) the "r" attributevoidxsetR(XmlUnsignedInt r)Sets (as xml) the "r" 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<CTExternalRow> Factory
-
type
static final SchemaType type
-
-
Method Detail
-
getCellList
java.util.List<CTExternalCell> getCellList()
Gets a List of "cell" elements
-
getCellArray
CTExternalCell[] getCellArray()
Gets array of all "cell" elements
-
getCellArray
CTExternalCell getCellArray(int i)
Gets ith "cell" element
-
sizeOfCellArray
int sizeOfCellArray()
Returns number of "cell" element
-
setCellArray
void setCellArray(CTExternalCell[] cellArray)
Sets array of all "cell" element
-
setCellArray
void setCellArray(int i, CTExternalCell cell)Sets ith "cell" element
-
insertNewCell
CTExternalCell insertNewCell(int i)
Inserts and returns a new empty value (as xml) as the ith "cell" element
-
addNewCell
CTExternalCell addNewCell()
Appends and returns a new empty value (as xml) as the last "cell" element
-
removeCell
void removeCell(int i)
Removes the ith "cell" element
-
getR
long getR()
Gets the "r" attribute
-
xgetR
XmlUnsignedInt xgetR()
Gets (as xml) the "r" attribute
-
setR
void setR(long r)
Sets the "r" attribute
-
xsetR
void xsetR(XmlUnsignedInt r)
Sets (as xml) the "r" attribute
-
-