Interface CTTuples
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTTuples extends XmlObject
An XML CT_Tuples(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTTuples.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 CTTuple
addNewTpl()
Appends and returns a new empty value (as xml) as the last "tpl" elementlong
getC()
Gets the "c" attributeCTTuple[]
getTplArray()
Deprecated.CTTuple
getTplArray(int i)
Gets ith "tpl" elementjava.util.List<CTTuple>
getTplList()
Gets a List of "tpl" elementsCTTuple
insertNewTpl(int i)
Inserts and returns a new empty value (as xml) as the ith "tpl" elementboolean
isSetC()
True if has "c" attributevoid
removeTpl(int i)
Removes the ith "tpl" elementvoid
setC(long c)
Sets the "c" attributevoid
setTplArray(int i, CTTuple tpl)
Sets ith "tpl" elementvoid
setTplArray(CTTuple[] tplArray)
Sets array of all "tpl" elementint
sizeOfTplArray()
Returns number of "tpl" elementvoid
unsetC()
Unsets the "c" attributeXmlUnsignedInt
xgetC()
Gets (as xml) the "c" attributevoid
xsetC(XmlUnsignedInt c)
Sets (as xml) the "c" 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
-
getTplList
java.util.List<CTTuple> getTplList()
Gets a List of "tpl" elements
-
getTplArray
@Deprecated CTTuple[] getTplArray()
Deprecated.Gets array of all "tpl" elements
-
getTplArray
CTTuple getTplArray(int i)
Gets ith "tpl" element
-
sizeOfTplArray
int sizeOfTplArray()
Returns number of "tpl" element
-
setTplArray
void setTplArray(CTTuple[] tplArray)
Sets array of all "tpl" element
-
setTplArray
void setTplArray(int i, CTTuple tpl)
Sets ith "tpl" element
-
insertNewTpl
CTTuple insertNewTpl(int i)
Inserts and returns a new empty value (as xml) as the ith "tpl" element
-
addNewTpl
CTTuple addNewTpl()
Appends and returns a new empty value (as xml) as the last "tpl" element
-
removeTpl
void removeTpl(int i)
Removes the ith "tpl" element
-
getC
long getC()
Gets the "c" attribute
-
xgetC
XmlUnsignedInt xgetC()
Gets (as xml) the "c" attribute
-
isSetC
boolean isSetC()
True if has "c" attribute
-
setC
void setC(long c)
Sets the "c" attribute
-
xsetC
void xsetC(XmlUnsignedInt c)
Sets (as xml) the "c" attribute
-
unsetC
void unsetC()
Unsets the "c" attribute
-
-