All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openxmlformats.schemas.drawingml.x2006.chart.CTBandFmts Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
/*
 * 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