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 classCTSdtComboBox.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 CTSdtListItemaddNewListItem()Appends and returns a new empty value (as xml) as the last "listItem" elementjava.lang.StringgetLastValue()Gets the "lastValue" attributeCTSdtListItem[]getListItemArray()Deprecated.CTSdtListItemgetListItemArray(int i)Gets ith "listItem" elementjava.util.List<CTSdtListItem>getListItemList()Gets a List of "listItem" elementsCTSdtListIteminsertNewListItem(int i)Inserts and returns a new empty value (as xml) as the ith "listItem" elementbooleanisSetLastValue()True if has "lastValue" attributevoidremoveListItem(int i)Removes the ith "listItem" elementvoidsetLastValue(java.lang.String lastValue)Sets the "lastValue" attributevoidsetListItemArray(int i, CTSdtListItem listItem)Sets ith "listItem" elementvoidsetListItemArray(CTSdtListItem[] listItemArray)Sets array of all "listItem" elementintsizeOfListItemArray()Returns number of "listItem" elementvoidunsetLastValue()Unsets the "lastValue" attributeSTStringxgetLastValue()Gets (as xml) the "lastValue" attributevoidxsetLastValue(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
-
-