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 classCTTuples.FactoryA factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static SchemaTypetype-
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 CTTupleaddNewTpl()Appends and returns a new empty value (as xml) as the last "tpl" elementlonggetC()Gets the "c" attributeCTTuple[]getTplArray()Deprecated.CTTuplegetTplArray(int i)Gets ith "tpl" elementjava.util.List<CTTuple>getTplList()Gets a List of "tpl" elementsCTTupleinsertNewTpl(int i)Inserts and returns a new empty value (as xml) as the ith "tpl" elementbooleanisSetC()True if has "c" attributevoidremoveTpl(int i)Removes the ith "tpl" elementvoidsetC(long c)Sets the "c" attributevoidsetTplArray(int i, CTTuple tpl)Sets ith "tpl" elementvoidsetTplArray(CTTuple[] tplArray)Sets array of all "tpl" elementintsizeOfTplArray()Returns number of "tpl" elementvoidunsetC()Unsets the "c" attributeXmlUnsignedIntxgetC()Gets (as xml) the "c" attributevoidxsetC(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
-
-