Interface CTBoolean
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTBoolean extends XmlObject
An XML CT_Boolean(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTBoolean.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 CTX
addNewX()
Appends and returns a new empty value (as xml) as the last "x" elementjava.lang.String
getC()
Gets the "c" attributelong
getCp()
Gets the "cp" attributeboolean
getF()
Gets the "f" attributeboolean
getU()
Gets the "u" attributeboolean
getV()
Gets the "v" attributeCTX[]
getXArray()
Deprecated.CTX
getXArray(int i)
Gets ith "x" elementjava.util.List<CTX>
getXList()
Gets a List of "x" elementsCTX
insertNewX(int i)
Inserts and returns a new empty value (as xml) as the ith "x" elementboolean
isSetC()
True if has "c" attributeboolean
isSetCp()
True if has "cp" attributeboolean
isSetF()
True if has "f" attributeboolean
isSetU()
True if has "u" attributevoid
removeX(int i)
Removes the ith "x" elementvoid
setC(java.lang.String c)
Sets the "c" attributevoid
setCp(long cp)
Sets the "cp" attributevoid
setF(boolean f)
Sets the "f" attributevoid
setU(boolean u)
Sets the "u" attributevoid
setV(boolean v)
Sets the "v" attributevoid
setXArray(int i, CTX x)
Sets ith "x" elementvoid
setXArray(CTX[] xArray)
Sets array of all "x" elementint
sizeOfXArray()
Returns number of "x" elementvoid
unsetC()
Unsets the "c" attributevoid
unsetCp()
Unsets the "cp" attributevoid
unsetF()
Unsets the "f" attributevoid
unsetU()
Unsets the "u" attributeSTXstring
xgetC()
Gets (as xml) the "c" attributeXmlUnsignedInt
xgetCp()
Gets (as xml) the "cp" attributeXmlBoolean
xgetF()
Gets (as xml) the "f" attributeXmlBoolean
xgetU()
Gets (as xml) the "u" attributeXmlBoolean
xgetV()
Gets (as xml) the "v" attributevoid
xsetC(STXstring c)
Sets (as xml) the "c" attributevoid
xsetCp(XmlUnsignedInt cp)
Sets (as xml) the "cp" attributevoid
xsetF(XmlBoolean f)
Sets (as xml) the "f" attributevoid
xsetU(XmlBoolean u)
Sets (as xml) the "u" attributevoid
xsetV(XmlBoolean v)
Sets (as xml) the "v" 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
-
getXList
java.util.List<CTX> getXList()
Gets a List of "x" elements
-
getXArray
@Deprecated CTX[] getXArray()
Deprecated.Gets array of all "x" elements
-
getXArray
CTX getXArray(int i)
Gets ith "x" element
-
sizeOfXArray
int sizeOfXArray()
Returns number of "x" element
-
setXArray
void setXArray(CTX[] xArray)
Sets array of all "x" element
-
setXArray
void setXArray(int i, CTX x)
Sets ith "x" element
-
insertNewX
CTX insertNewX(int i)
Inserts and returns a new empty value (as xml) as the ith "x" element
-
addNewX
CTX addNewX()
Appends and returns a new empty value (as xml) as the last "x" element
-
removeX
void removeX(int i)
Removes the ith "x" element
-
getV
boolean getV()
Gets the "v" attribute
-
xgetV
XmlBoolean xgetV()
Gets (as xml) the "v" attribute
-
setV
void setV(boolean v)
Sets the "v" attribute
-
xsetV
void xsetV(XmlBoolean v)
Sets (as xml) the "v" attribute
-
getU
boolean getU()
Gets the "u" attribute
-
xgetU
XmlBoolean xgetU()
Gets (as xml) the "u" attribute
-
isSetU
boolean isSetU()
True if has "u" attribute
-
setU
void setU(boolean u)
Sets the "u" attribute
-
xsetU
void xsetU(XmlBoolean u)
Sets (as xml) the "u" attribute
-
unsetU
void unsetU()
Unsets the "u" attribute
-
getF
boolean getF()
Gets the "f" attribute
-
xgetF
XmlBoolean xgetF()
Gets (as xml) the "f" attribute
-
isSetF
boolean isSetF()
True if has "f" attribute
-
setF
void setF(boolean f)
Sets the "f" attribute
-
xsetF
void xsetF(XmlBoolean f)
Sets (as xml) the "f" attribute
-
unsetF
void unsetF()
Unsets the "f" attribute
-
getC
java.lang.String getC()
Gets the "c" attribute
-
xgetC
STXstring xgetC()
Gets (as xml) the "c" attribute
-
isSetC
boolean isSetC()
True if has "c" attribute
-
setC
void setC(java.lang.String c)
Sets the "c" attribute
-
xsetC
void xsetC(STXstring c)
Sets (as xml) the "c" attribute
-
unsetC
void unsetC()
Unsets the "c" attribute
-
getCp
long getCp()
Gets the "cp" attribute
-
xgetCp
XmlUnsignedInt xgetCp()
Gets (as xml) the "cp" attribute
-
isSetCp
boolean isSetCp()
True if has "cp" attribute
-
setCp
void setCp(long cp)
Sets the "cp" attribute
-
xsetCp
void xsetCp(XmlUnsignedInt cp)
Sets (as xml) the "cp" attribute
-
unsetCp
void unsetCp()
Unsets the "cp" attribute
-
-