Interface CTExternalSheetData
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTExternalSheetData extends XmlObject
An XML CT_ExternalSheetData(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCTExternalSheetData.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 CTExternalRowaddNewRow()Appends and returns a new empty value (as xml) as the last "row" elementbooleangetRefreshError()Gets the "refreshError" attributeCTExternalRow[]getRowArray()Deprecated.CTExternalRowgetRowArray(int i)Gets ith "row" elementjava.util.List<CTExternalRow>getRowList()Gets a List of "row" elementslonggetSheetId()Gets the "sheetId" attributeCTExternalRowinsertNewRow(int i)Inserts and returns a new empty value (as xml) as the ith "row" elementbooleanisSetRefreshError()True if has "refreshError" attributevoidremoveRow(int i)Removes the ith "row" elementvoidsetRefreshError(boolean refreshError)Sets the "refreshError" attributevoidsetRowArray(int i, CTExternalRow row)Sets ith "row" elementvoidsetRowArray(CTExternalRow[] rowArray)Sets array of all "row" elementvoidsetSheetId(long sheetId)Sets the "sheetId" attributeintsizeOfRowArray()Returns number of "row" elementvoidunsetRefreshError()Unsets the "refreshError" attributeXmlBooleanxgetRefreshError()Gets (as xml) the "refreshError" attributeXmlUnsignedIntxgetSheetId()Gets (as xml) the "sheetId" attributevoidxsetRefreshError(XmlBoolean refreshError)Sets (as xml) the "refreshError" attributevoidxsetSheetId(XmlUnsignedInt sheetId)Sets (as xml) the "sheetId" 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
-
getRowList
java.util.List<CTExternalRow> getRowList()
Gets a List of "row" elements
-
getRowArray
@Deprecated CTExternalRow[] getRowArray()
Deprecated.Gets array of all "row" elements
-
getRowArray
CTExternalRow getRowArray(int i)
Gets ith "row" element
-
sizeOfRowArray
int sizeOfRowArray()
Returns number of "row" element
-
setRowArray
void setRowArray(CTExternalRow[] rowArray)
Sets array of all "row" element
-
setRowArray
void setRowArray(int i, CTExternalRow row)Sets ith "row" element
-
insertNewRow
CTExternalRow insertNewRow(int i)
Inserts and returns a new empty value (as xml) as the ith "row" element
-
addNewRow
CTExternalRow addNewRow()
Appends and returns a new empty value (as xml) as the last "row" element
-
removeRow
void removeRow(int i)
Removes the ith "row" element
-
getSheetId
long getSheetId()
Gets the "sheetId" attribute
-
xgetSheetId
XmlUnsignedInt xgetSheetId()
Gets (as xml) the "sheetId" attribute
-
setSheetId
void setSheetId(long sheetId)
Sets the "sheetId" attribute
-
xsetSheetId
void xsetSheetId(XmlUnsignedInt sheetId)
Sets (as xml) the "sheetId" attribute
-
getRefreshError
boolean getRefreshError()
Gets the "refreshError" attribute
-
xgetRefreshError
XmlBoolean xgetRefreshError()
Gets (as xml) the "refreshError" attribute
-
isSetRefreshError
boolean isSetRefreshError()
True if has "refreshError" attribute
-
setRefreshError
void setRefreshError(boolean refreshError)
Sets the "refreshError" attribute
-
xsetRefreshError
void xsetRefreshError(XmlBoolean refreshError)
Sets (as xml) the "refreshError" attribute
-
unsetRefreshError
void unsetRefreshError()
Unsets the "refreshError" attribute
-
-