Interface CTI
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTI extends XmlObject
An XML CT_I(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Field Summary
Fields Modifier and Type Field Description static DocumentFactory<CTI>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 CTXaddNewX()Appends and returns a new empty value (as xml) as the last "x" elementlonggetI()Gets the "i" attributelonggetR()Gets the "r" attributeSTItemType.EnumgetT()Gets the "t" attributeCTX[]getXArray()Gets array of all "x" elementsCTXgetXArray(int i)Gets ith "x" elementjava.util.List<CTX>getXList()Gets a List of "x" elementsCTXinsertNewX(int i)Inserts and returns a new empty value (as xml) as the ith "x" elementbooleanisSetI()True if has "i" attributebooleanisSetR()True if has "r" attributebooleanisSetT()True if has "t" attributevoidremoveX(int i)Removes the ith "x" elementvoidsetI(long iValue)Sets the "i" attributevoidsetR(long r)Sets the "r" attributevoidsetT(STItemType.Enum t)Sets the "t" attributevoidsetXArray(int i, CTX x)Sets ith "x" elementvoidsetXArray(CTX[] xArray)Sets array of all "x" elementintsizeOfXArray()Returns number of "x" elementvoidunsetI()Unsets the "i" attributevoidunsetR()Unsets the "r" attributevoidunsetT()Unsets the "t" attributeXmlUnsignedIntxgetI()Gets (as xml) the "i" attributeXmlUnsignedIntxgetR()Gets (as xml) the "r" attributeSTItemTypexgetT()Gets (as xml) the "t" attributevoidxsetI(XmlUnsignedInt iValue)Sets (as xml) the "i" attributevoidxsetR(XmlUnsignedInt r)Sets (as xml) the "r" attributevoidxsetT(STItemType t)Sets (as xml) the "t" 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, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
Factory
static final DocumentFactory<CTI> Factory
-
type
static final SchemaType type
-
-
Method Detail
-
getXList
java.util.List<CTX> getXList()
Gets a List of "x" elements
-
getXArray
CTX[] getXArray()
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
-
getT
STItemType.Enum getT()
Gets the "t" attribute
-
xgetT
STItemType xgetT()
Gets (as xml) the "t" attribute
-
isSetT
boolean isSetT()
True if has "t" attribute
-
setT
void setT(STItemType.Enum t)
Sets the "t" attribute
-
xsetT
void xsetT(STItemType t)
Sets (as xml) the "t" attribute
-
unsetT
void unsetT()
Unsets the "t" attribute
-
getR
long getR()
Gets the "r" attribute
-
xgetR
XmlUnsignedInt xgetR()
Gets (as xml) the "r" attribute
-
isSetR
boolean isSetR()
True if has "r" attribute
-
setR
void setR(long r)
Sets the "r" attribute
-
xsetR
void xsetR(XmlUnsignedInt r)
Sets (as xml) the "r" attribute
-
unsetR
void unsetR()
Unsets the "r" attribute
-
getI
long getI()
Gets the "i" attribute
-
xgetI
XmlUnsignedInt xgetI()
Gets (as xml) the "i" attribute
-
isSetI
boolean isSetI()
True if has "i" attribute
-
setI
void setI(long iValue)
Sets the "i" attribute
-
xsetI
void xsetI(XmlUnsignedInt iValue)
Sets (as xml) the "i" attribute
-
unsetI
void unsetI()
Unsets the "i" attribute
-
-