Interface CTDdeValues
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTDdeValues extends XmlObject
An XML CT_DdeValues(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTDdeValues.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 CTDdeValue
addNewValue()
Appends and returns a new empty value (as xml) as the last "value" elementlong
getCols()
Gets the "cols" attributelong
getRows()
Gets the "rows" attributeCTDdeValue[]
getValueArray()
Deprecated.CTDdeValue
getValueArray(int i)
Gets ith "value" elementjava.util.List<CTDdeValue>
getValueList()
Gets a List of "value" elementsCTDdeValue
insertNewValue(int i)
Inserts and returns a new empty value (as xml) as the ith "value" elementboolean
isSetCols()
True if has "cols" attributeboolean
isSetRows()
True if has "rows" attributevoid
removeValue(int i)
Removes the ith "value" elementvoid
setCols(long cols)
Sets the "cols" attributevoid
setRows(long rows)
Sets the "rows" attributevoid
setValueArray(int i, CTDdeValue value)
Sets ith "value" elementvoid
setValueArray(CTDdeValue[] valueArray)
Sets array of all "value" elementint
sizeOfValueArray()
Returns number of "value" elementvoid
unsetCols()
Unsets the "cols" attributevoid
unsetRows()
Unsets the "rows" attributeXmlUnsignedInt
xgetCols()
Gets (as xml) the "cols" attributeXmlUnsignedInt
xgetRows()
Gets (as xml) the "rows" attributevoid
xsetCols(XmlUnsignedInt cols)
Sets (as xml) the "cols" attributevoid
xsetRows(XmlUnsignedInt rows)
Sets (as xml) the "rows" 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
-
getValueList
java.util.List<CTDdeValue> getValueList()
Gets a List of "value" elements
-
getValueArray
@Deprecated CTDdeValue[] getValueArray()
Deprecated.Gets array of all "value" elements
-
getValueArray
CTDdeValue getValueArray(int i)
Gets ith "value" element
-
sizeOfValueArray
int sizeOfValueArray()
Returns number of "value" element
-
setValueArray
void setValueArray(CTDdeValue[] valueArray)
Sets array of all "value" element
-
setValueArray
void setValueArray(int i, CTDdeValue value)
Sets ith "value" element
-
insertNewValue
CTDdeValue insertNewValue(int i)
Inserts and returns a new empty value (as xml) as the ith "value" element
-
addNewValue
CTDdeValue addNewValue()
Appends and returns a new empty value (as xml) as the last "value" element
-
removeValue
void removeValue(int i)
Removes the ith "value" element
-
getRows
long getRows()
Gets the "rows" attribute
-
xgetRows
XmlUnsignedInt xgetRows()
Gets (as xml) the "rows" attribute
-
isSetRows
boolean isSetRows()
True if has "rows" attribute
-
setRows
void setRows(long rows)
Sets the "rows" attribute
-
xsetRows
void xsetRows(XmlUnsignedInt rows)
Sets (as xml) the "rows" attribute
-
unsetRows
void unsetRows()
Unsets the "rows" attribute
-
getCols
long getCols()
Gets the "cols" attribute
-
xgetCols
XmlUnsignedInt xgetCols()
Gets (as xml) the "cols" attribute
-
isSetCols
boolean isSetCols()
True if has "cols" attribute
-
setCols
void setCols(long cols)
Sets the "cols" attribute
-
xsetCols
void xsetCols(XmlUnsignedInt cols)
Sets (as xml) the "cols" attribute
-
unsetCols
void unsetCols()
Unsets the "cols" attribute
-
-