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.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTCols.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 CTCol
addNewCol()
Appends and returns a new empty value (as xml) as the last "col" elementCTCol[]
getColArray()
Deprecated.CTCol
getColArray(int i)
Gets ith "col" elementjava.util.List<CTCol>
getColList()
Gets a List of "col" elementsCTCol
insertNewCol(int i)
Inserts and returns a new empty value (as xml) as the ith "col" elementvoid
removeCol(int i)
Removes the ith "col" elementvoid
setColArray(int i, CTCol col)
Sets ith "col" elementvoid
setColArray(CTCol[] colArray)
Sets array of all "col" elementint
sizeOfColArray()
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, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
type
static final SchemaType type
-
-
Method Detail
-
getColList
java.util.List<CTCol> getColList()
Gets a List of "col" elements
-
getColArray
@Deprecated CTCol[] getColArray()
Deprecated.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
-
-