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.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCTFFDDList.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 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()Deprecated.CTStringgetListEntryArray(int i)Gets ith "listEntry" elementList<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, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
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
-
getListEntryArray
@Deprecated CTString[] getListEntryArray()
Deprecated.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
-
-