org.openxmlformats.schemas.drawingml.x2006.chart.CTBandFmts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
/*
* XML Type: CT_BandFmts
* Namespace: http://schemas.openxmlformats.org/drawingml/2006/chart
* Java type: org.openxmlformats.schemas.drawingml.x2006.chart.CTBandFmts
*
* Automatically generated - do not modify.
*/
package org.openxmlformats.schemas.drawingml.x2006.chart;
import org.apache.xmlbeans.impl.schema.ElementFactory;
import org.apache.xmlbeans.impl.schema.AbstractDocumentFactory;
import org.apache.xmlbeans.impl.schema.DocumentFactory;
import org.apache.xmlbeans.impl.schema.SimpleTypeFactory;
/**
* An XML CT_BandFmts(@http://schemas.openxmlformats.org/drawingml/2006/chart).
*
* This is a complex type.
*/
public interface CTBandFmts extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "ctbandfmts9981type");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets a List of "bandFmt" elements
*/
java.util.List getBandFmtList();
/**
* Gets array of all "bandFmt" elements
*/
org.openxmlformats.schemas.drawingml.x2006.chart.CTBandFmt[] getBandFmtArray();
/**
* Gets ith "bandFmt" element
*/
org.openxmlformats.schemas.drawingml.x2006.chart.CTBandFmt getBandFmtArray(int i);
/**
* Returns number of "bandFmt" element
*/
int sizeOfBandFmtArray();
/**
* Sets array of all "bandFmt" element
*/
void setBandFmtArray(org.openxmlformats.schemas.drawingml.x2006.chart.CTBandFmt[] bandFmtArray);
/**
* Sets ith "bandFmt" element
*/
void setBandFmtArray(int i, org.openxmlformats.schemas.drawingml.x2006.chart.CTBandFmt bandFmt);
/**
* Inserts and returns a new empty value (as xml) as the ith "bandFmt" element
*/
org.openxmlformats.schemas.drawingml.x2006.chart.CTBandFmt insertNewBandFmt(int i);
/**
* Appends and returns a new empty value (as xml) as the last "bandFmt" element
*/
org.openxmlformats.schemas.drawingml.x2006.chart.CTBandFmt addNewBandFmt();
/**
* Removes the ith "bandFmt" element
*/
void removeBandFmt(int i);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy