Interface CTSdtDropDownList
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTSdtDropDownList extends XmlObject
An XML CT_SdtDropDownList(@http://schemas.openxmlformats.org/wordprocessingml/2006/main). This is a complex type.
-
-
Field Summary
Fields Modifier and Type Field Description static DocumentFactory<CTSdtDropDownList>Factorystatic SchemaTypetype-
Fields inherited from interface org.apache.xmlbeans.XmlObject
EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL
-
-
Method Summary
All Methods Instance Methods Abstract 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()Gets array of all "listItem" elementsCTSdtListItemgetListItemArray(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" attributeorg.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STStringxgetLastValue()Gets (as xml) the "lastValue" attributevoidxsetLastValue(org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.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, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
Factory
static final DocumentFactory<CTSdtDropDownList> Factory
-
type
static final SchemaType type
-
-
Method Detail
-
getListItemList
java.util.List<CTSdtListItem> getListItemList()
Gets a List of "listItem" elements
-
getListItemArray
CTSdtListItem[] getListItemArray()
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
org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.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(org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STString lastValue)
Sets (as xml) the "lastValue" attribute
-
unsetLastValue
void unsetLastValue()
Unsets the "lastValue" attribute
-
-