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.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTExternalRow.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 CTExternalCell
addNewCell()
Appends and returns a new empty value (as xml) as the last "cell" elementCTExternalCell[]
getCellArray()
Deprecated.CTExternalCell
getCellArray(int i)
Gets ith "cell" elementjava.util.List<CTExternalCell>
getCellList()
Gets a List of "cell" elementslong
getR()
Gets the "r" attributeCTExternalCell
insertNewCell(int i)
Inserts and returns a new empty value (as xml) as the ith "cell" elementvoid
removeCell(int i)
Removes the ith "cell" elementvoid
setCellArray(int i, CTExternalCell cell)
Sets ith "cell" elementvoid
setCellArray(CTExternalCell[] cellArray)
Sets array of all "cell" elementvoid
setR(long r)
Sets the "r" attributeint
sizeOfCellArray()
Returns number of "cell" elementXmlUnsignedInt
xgetR()
Gets (as xml) the "r" attributevoid
xsetR(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, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
type
static final SchemaType type
-
-
Method Detail
-
getCellList
java.util.List<CTExternalCell> getCellList()
Gets a List of "cell" elements
-
getCellArray
@Deprecated CTExternalCell[] getCellArray()
Deprecated.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
-
-