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.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTI.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" elementlong
getI()
Gets the "i" attributelong
getR()
Gets the "r" attributeSTItemType.Enum
getT()
Gets the "t" 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
isSetI()
True if has "i" attributeboolean
isSetR()
True if has "r" attributeboolean
isSetT()
True if has "t" attributevoid
removeX(int i)
Removes the ith "x" elementvoid
setI(long iValue)
Sets the "i" attributevoid
setR(long r)
Sets the "r" attributevoid
setT(STItemType.Enum t)
Sets the "t" 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
unsetI()
Unsets the "i" attributevoid
unsetR()
Unsets the "r" attributevoid
unsetT()
Unsets the "t" attributeXmlUnsignedInt
xgetI()
Gets (as xml) the "i" attributeXmlUnsignedInt
xgetR()
Gets (as xml) the "r" attributeSTItemType
xgetT()
Gets (as xml) the "t" attributevoid
xsetI(XmlUnsignedInt iValue)
Sets (as xml) the "i" attributevoid
xsetR(XmlUnsignedInt r)
Sets (as xml) the "r" attributevoid
xsetT(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, 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
-
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
-
-