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 classCTDdeValues.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 CTDdeValueaddNewValue()Appends and returns a new empty value (as xml) as the last "value" elementlonggetCols()Gets the "cols" attributelonggetRows()Gets the "rows" attributeCTDdeValue[]getValueArray()Deprecated.CTDdeValuegetValueArray(int i)Gets ith "value" elementjava.util.List<CTDdeValue>getValueList()Gets a List of "value" elementsCTDdeValueinsertNewValue(int i)Inserts and returns a new empty value (as xml) as the ith "value" elementbooleanisSetCols()True if has "cols" attributebooleanisSetRows()True if has "rows" attributevoidremoveValue(int i)Removes the ith "value" elementvoidsetCols(long cols)Sets the "cols" attributevoidsetRows(long rows)Sets the "rows" attributevoidsetValueArray(int i, CTDdeValue value)Sets ith "value" elementvoidsetValueArray(CTDdeValue[] valueArray)Sets array of all "value" elementintsizeOfValueArray()Returns number of "value" elementvoidunsetCols()Unsets the "cols" attributevoidunsetRows()Unsets the "rows" attributeXmlUnsignedIntxgetCols()Gets (as xml) the "cols" attributeXmlUnsignedIntxgetRows()Gets (as xml) the "rows" attributevoidxsetCols(XmlUnsignedInt cols)Sets (as xml) the "cols" attributevoidxsetRows(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
-
-