Interface CTBandFmts
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTBandFmts extends XmlObject
An XML CT_BandFmts(@http://schemas.openxmlformats.org/drawingml/2006/chart). This is a complex type.
-
-
Field Summary
Fields Modifier and Type Field Description static DocumentFactory<CTBandFmts>
Factory
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 Modifier and Type Method Description CTBandFmt
addNewBandFmt()
Appends and returns a new empty value (as xml) as the last "bandFmt" elementCTBandFmt[]
getBandFmtArray()
Gets array of all "bandFmt" elementsCTBandFmt
getBandFmtArray(int i)
Gets ith "bandFmt" elementjava.util.List<CTBandFmt>
getBandFmtList()
Gets a List of "bandFmt" elementsCTBandFmt
insertNewBandFmt(int i)
Inserts and returns a new empty value (as xml) as the ith "bandFmt" elementvoid
removeBandFmt(int i)
Removes the ith "bandFmt" elementvoid
setBandFmtArray(int i, CTBandFmt bandFmt)
Sets ith "bandFmt" elementvoid
setBandFmtArray(CTBandFmt[] bandFmtArray)
Sets array of all "bandFmt" elementint
sizeOfBandFmtArray()
Returns number of "bandFmt" 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<CTBandFmts> Factory
-
type
static final SchemaType type
-
-
Method Detail
-
getBandFmtList
java.util.List<CTBandFmt> getBandFmtList()
Gets a List of "bandFmt" elements
-
getBandFmtArray
CTBandFmt[] getBandFmtArray()
Gets array of all "bandFmt" elements
-
getBandFmtArray
CTBandFmt getBandFmtArray(int i)
Gets ith "bandFmt" element
-
sizeOfBandFmtArray
int sizeOfBandFmtArray()
Returns number of "bandFmt" element
-
setBandFmtArray
void setBandFmtArray(CTBandFmt[] bandFmtArray)
Sets array of all "bandFmt" element
-
setBandFmtArray
void setBandFmtArray(int i, CTBandFmt bandFmt)
Sets ith "bandFmt" element
-
insertNewBandFmt
CTBandFmt insertNewBandFmt(int i)
Inserts and returns a new empty value (as xml) as the ith "bandFmt" element
-
addNewBandFmt
CTBandFmt addNewBandFmt()
Appends and returns a new empty value (as xml) as the last "bandFmt" element
-
removeBandFmt
void removeBandFmt(int i)
Removes the ith "bandFmt" element
-
-