Interface CTFFDDList
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTFFDDList extends XmlObject
An XML CT_FFDDList(@http://schemas.openxmlformats.org/wordprocessingml/2006/main). This is a complex type.
-
-
Field Summary
Fields Modifier and Type Field Description static DocumentFactory<CTFFDDList>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 CTDecimalNumberaddNewDefault()Appends and returns a new empty "default" elementCTStringaddNewListEntry()Appends and returns a new empty value (as xml) as the last "listEntry" elementCTDecimalNumberaddNewResult()Appends and returns a new empty "result" elementCTDecimalNumbergetDefault()Gets the "default" elementCTString[]getListEntryArray()Gets array of all "listEntry" elementsCTStringgetListEntryArray(int i)Gets ith "listEntry" elementjava.util.List<CTString>getListEntryList()Gets a List of "listEntry" elementsCTDecimalNumbergetResult()Gets the "result" elementCTStringinsertNewListEntry(int i)Inserts and returns a new empty value (as xml) as the ith "listEntry" elementbooleanisSetDefault()True if has "default" elementbooleanisSetResult()True if has "result" elementvoidremoveListEntry(int i)Removes the ith "listEntry" elementvoidsetDefault(CTDecimalNumber xdefault)Sets the "default" elementvoidsetListEntryArray(int i, CTString listEntry)Sets ith "listEntry" elementvoidsetListEntryArray(CTString[] listEntryArray)Sets array of all "listEntry" elementvoidsetResult(CTDecimalNumber result)Sets the "result" elementintsizeOfListEntryArray()Returns number of "listEntry" elementvoidunsetDefault()Unsets the "default" elementvoidunsetResult()Unsets the "result" element-
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<CTFFDDList> Factory
-
type
static final SchemaType type
-
-
Method Detail
-
getResult
CTDecimalNumber getResult()
Gets the "result" element
-
isSetResult
boolean isSetResult()
True if has "result" element
-
setResult
void setResult(CTDecimalNumber result)
Sets the "result" element
-
addNewResult
CTDecimalNumber addNewResult()
Appends and returns a new empty "result" element
-
unsetResult
void unsetResult()
Unsets the "result" element
-
getDefault
CTDecimalNumber getDefault()
Gets the "default" element
-
isSetDefault
boolean isSetDefault()
True if has "default" element
-
setDefault
void setDefault(CTDecimalNumber xdefault)
Sets the "default" element
-
addNewDefault
CTDecimalNumber addNewDefault()
Appends and returns a new empty "default" element
-
unsetDefault
void unsetDefault()
Unsets the "default" element
-
getListEntryList
java.util.List<CTString> getListEntryList()
Gets a List of "listEntry" elements
-
getListEntryArray
CTString[] getListEntryArray()
Gets array of all "listEntry" elements
-
getListEntryArray
CTString getListEntryArray(int i)
Gets ith "listEntry" element
-
sizeOfListEntryArray
int sizeOfListEntryArray()
Returns number of "listEntry" element
-
setListEntryArray
void setListEntryArray(CTString[] listEntryArray)
Sets array of all "listEntry" element
-
setListEntryArray
void setListEntryArray(int i, CTString listEntry)Sets ith "listEntry" element
-
insertNewListEntry
CTString insertNewListEntry(int i)
Inserts and returns a new empty value (as xml) as the ith "listEntry" element
-
addNewListEntry
CTString addNewListEntry()
Appends and returns a new empty value (as xml) as the last "listEntry" element
-
removeListEntry
void removeListEntry(int i)
Removes the ith "listEntry" element
-
-