Interface CTColumns
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTColumns extends XmlObject
An XML CT_Columns(@http://schemas.openxmlformats.org/wordprocessingml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTColumns.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 CTColumn
addNewCol()
Appends and returns a new empty value (as xml) as the last "col" elementCTColumn[]
getColArray()
Deprecated.CTColumn
getColArray(int i)
Gets ith "col" elementjava.util.List<CTColumn>
getColList()
Gets a List of "col" elementsSTOnOff.Enum
getEqualWidth()
Gets the "equalWidth" attributejava.math.BigInteger
getNum()
Gets the "num" attributeSTOnOff.Enum
getSep()
Gets the "sep" attributejava.math.BigInteger
getSpace()
Gets the "space" attributeCTColumn
insertNewCol(int i)
Inserts and returns a new empty value (as xml) as the ith "col" elementboolean
isSetEqualWidth()
True if has "equalWidth" attributeboolean
isSetNum()
True if has "num" attributeboolean
isSetSep()
True if has "sep" attributeboolean
isSetSpace()
True if has "space" attributevoid
removeCol(int i)
Removes the ith "col" elementvoid
setColArray(int i, CTColumn col)
Sets ith "col" elementvoid
setColArray(CTColumn[] colArray)
Sets array of all "col" elementvoid
setEqualWidth(STOnOff.Enum equalWidth)
Sets the "equalWidth" attributevoid
setNum(java.math.BigInteger num)
Sets the "num" attributevoid
setSep(STOnOff.Enum sep)
Sets the "sep" attributevoid
setSpace(java.math.BigInteger space)
Sets the "space" attributeint
sizeOfColArray()
Returns number of "col" elementvoid
unsetEqualWidth()
Unsets the "equalWidth" attributevoid
unsetNum()
Unsets the "num" attributevoid
unsetSep()
Unsets the "sep" attributevoid
unsetSpace()
Unsets the "space" attributeSTOnOff
xgetEqualWidth()
Gets (as xml) the "equalWidth" attributeSTDecimalNumber
xgetNum()
Gets (as xml) the "num" attributeSTOnOff
xgetSep()
Gets (as xml) the "sep" attributeSTTwipsMeasure
xgetSpace()
Gets (as xml) the "space" attributevoid
xsetEqualWidth(STOnOff equalWidth)
Sets (as xml) the "equalWidth" attributevoid
xsetNum(STDecimalNumber num)
Sets (as xml) the "num" attributevoid
xsetSep(STOnOff sep)
Sets (as xml) the "sep" attributevoid
xsetSpace(STTwipsMeasure space)
Sets (as xml) the "space" 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
-
getColList
java.util.List<CTColumn> getColList()
Gets a List of "col" elements
-
getColArray
@Deprecated CTColumn[] getColArray()
Deprecated.Gets array of all "col" elements
-
getColArray
CTColumn getColArray(int i)
Gets ith "col" element
-
sizeOfColArray
int sizeOfColArray()
Returns number of "col" element
-
setColArray
void setColArray(CTColumn[] colArray)
Sets array of all "col" element
-
setColArray
void setColArray(int i, CTColumn col)
Sets ith "col" element
-
insertNewCol
CTColumn insertNewCol(int i)
Inserts and returns a new empty value (as xml) as the ith "col" element
-
addNewCol
CTColumn 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
-
getEqualWidth
STOnOff.Enum getEqualWidth()
Gets the "equalWidth" attribute
-
xgetEqualWidth
STOnOff xgetEqualWidth()
Gets (as xml) the "equalWidth" attribute
-
isSetEqualWidth
boolean isSetEqualWidth()
True if has "equalWidth" attribute
-
setEqualWidth
void setEqualWidth(STOnOff.Enum equalWidth)
Sets the "equalWidth" attribute
-
xsetEqualWidth
void xsetEqualWidth(STOnOff equalWidth)
Sets (as xml) the "equalWidth" attribute
-
unsetEqualWidth
void unsetEqualWidth()
Unsets the "equalWidth" attribute
-
getSpace
java.math.BigInteger getSpace()
Gets the "space" attribute
-
xgetSpace
STTwipsMeasure xgetSpace()
Gets (as xml) the "space" attribute
-
isSetSpace
boolean isSetSpace()
True if has "space" attribute
-
setSpace
void setSpace(java.math.BigInteger space)
Sets the "space" attribute
-
xsetSpace
void xsetSpace(STTwipsMeasure space)
Sets (as xml) the "space" attribute
-
unsetSpace
void unsetSpace()
Unsets the "space" attribute
-
getNum
java.math.BigInteger getNum()
Gets the "num" attribute
-
xgetNum
STDecimalNumber xgetNum()
Gets (as xml) the "num" attribute
-
isSetNum
boolean isSetNum()
True if has "num" attribute
-
setNum
void setNum(java.math.BigInteger num)
Sets the "num" attribute
-
xsetNum
void xsetNum(STDecimalNumber num)
Sets (as xml) the "num" attribute
-
unsetNum
void unsetNum()
Unsets the "num" attribute
-
getSep
STOnOff.Enum getSep()
Gets the "sep" attribute
-
xgetSep
STOnOff xgetSep()
Gets (as xml) the "sep" attribute
-
isSetSep
boolean isSetSep()
True if has "sep" attribute
-
setSep
void setSep(STOnOff.Enum sep)
Sets the "sep" attribute
-
xsetSep
void xsetSep(STOnOff sep)
Sets (as xml) the "sep" attribute
-
unsetSep
void unsetSep()
Unsets the "sep" attribute
-
-