Interface CTSdtComboBox
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTSdtComboBox extends XmlObject
An XML CT_SdtComboBox(@http://schemas.openxmlformats.org/wordprocessingml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTSdtComboBox.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 CTSdtListItem
addNewListItem()
Appends and returns a new empty value (as xml) as the last "listItem" elementjava.lang.String
getLastValue()
Gets the "lastValue" attributeCTSdtListItem[]
getListItemArray()
Deprecated.CTSdtListItem
getListItemArray(int i)
Gets ith "listItem" elementjava.util.List<CTSdtListItem>
getListItemList()
Gets a List of "listItem" elementsCTSdtListItem
insertNewListItem(int i)
Inserts and returns a new empty value (as xml) as the ith "listItem" elementboolean
isSetLastValue()
True if has "lastValue" attributevoid
removeListItem(int i)
Removes the ith "listItem" elementvoid
setLastValue(java.lang.String lastValue)
Sets the "lastValue" attributevoid
setListItemArray(int i, CTSdtListItem listItem)
Sets ith "listItem" elementvoid
setListItemArray(CTSdtListItem[] listItemArray)
Sets array of all "listItem" elementint
sizeOfListItemArray()
Returns number of "listItem" elementvoid
unsetLastValue()
Unsets the "lastValue" attributeSTString
xgetLastValue()
Gets (as xml) the "lastValue" attributevoid
xsetLastValue(STString lastValue)
Sets (as xml) the "lastValue" 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
-
getListItemList
java.util.List<CTSdtListItem> getListItemList()
Gets a List of "listItem" elements
-
getListItemArray
@Deprecated CTSdtListItem[] getListItemArray()
Deprecated.Gets array of all "listItem" elements
-
getListItemArray
CTSdtListItem getListItemArray(int i)
Gets ith "listItem" element
-
sizeOfListItemArray
int sizeOfListItemArray()
Returns number of "listItem" element
-
setListItemArray
void setListItemArray(CTSdtListItem[] listItemArray)
Sets array of all "listItem" element
-
setListItemArray
void setListItemArray(int i, CTSdtListItem listItem)
Sets ith "listItem" element
-
insertNewListItem
CTSdtListItem insertNewListItem(int i)
Inserts and returns a new empty value (as xml) as the ith "listItem" element
-
addNewListItem
CTSdtListItem addNewListItem()
Appends and returns a new empty value (as xml) as the last "listItem" element
-
removeListItem
void removeListItem(int i)
Removes the ith "listItem" element
-
getLastValue
java.lang.String getLastValue()
Gets the "lastValue" attribute
-
xgetLastValue
STString xgetLastValue()
Gets (as xml) the "lastValue" attribute
-
isSetLastValue
boolean isSetLastValue()
True if has "lastValue" attribute
-
setLastValue
void setLastValue(java.lang.String lastValue)
Sets the "lastValue" attribute
-
xsetLastValue
void xsetLastValue(STString lastValue)
Sets (as xml) the "lastValue" attribute
-
unsetLastValue
void unsetLastValue()
Unsets the "lastValue" attribute
-
-