Interface CTCols
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTCols extends XmlObject
An XML CT_Cols(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Field Summary
Fields Modifier and Type Field Description static DocumentFactory<CTCols>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 CTColaddNewCol()Appends and returns a new empty value (as xml) as the last "col" elementCTCol[]getColArray()Gets array of all "col" elementsCTColgetColArray(int i)Gets ith "col" elementjava.util.List<CTCol>getColList()Gets a List of "col" elementsCTColinsertNewCol(int i)Inserts and returns a new empty value (as xml) as the ith "col" elementvoidremoveCol(int i)Removes the ith "col" elementvoidsetColArray(int i, CTCol col)Sets ith "col" elementvoidsetColArray(CTCol[] colArray)Sets array of all "col" elementintsizeOfColArray()Returns number of "col" 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, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
Factory
static final DocumentFactory<CTCols> Factory
-
type
static final SchemaType type
-
-
Method Detail
-
getColList
java.util.List<CTCol> getColList()
Gets a List of "col" elements
-
getColArray
CTCol[] getColArray()
Gets array of all "col" elements
-
getColArray
CTCol getColArray(int i)
Gets ith "col" element
-
sizeOfColArray
int sizeOfColArray()
Returns number of "col" element
-
setColArray
void setColArray(CTCol[] colArray)
Sets array of all "col" element
-
setColArray
void setColArray(int i, CTCol col)Sets ith "col" element
-
insertNewCol
CTCol insertNewCol(int i)
Inserts and returns a new empty value (as xml) as the ith "col" element
-
addNewCol
CTCol addNewCol()
Appends and returns a new empty value (as xml) as the last "col" element
-
removeCol
void removeCol(int i)
Removes the ith "col" element
-
-