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

org.openxmlformats.schemas.drawingml.x2006.diagram.CTAdjLst Maven / Gradle / Ivy

Go to download

The Apache Commons Codec package contains simple encoder and decoders for various formats such as Base64 and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities.

There is a newer version: 62
Show newest version
/*
 * XML Type:  CT_AdjLst
 * Namespace: http://schemas.openxmlformats.org/drawingml/2006/diagram
 * Java type: org.openxmlformats.schemas.drawingml.x2006.diagram.CTAdjLst
 *
 * Automatically generated - do not modify.
 */
package org.openxmlformats.schemas.drawingml.x2006.diagram;

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_AdjLst(@http://schemas.openxmlformats.org/drawingml/2006/diagram).
 *
 * This is a complex type.
 */
public interface CTAdjLst extends org.apache.xmlbeans.XmlObject {
    DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "ctadjlstfe8btype");
    org.apache.xmlbeans.SchemaType type = Factory.getType();


    /**
     * Gets a List of "adj" elements
     */
    java.util.List getAdjList();

    /**
     * Gets array of all "adj" elements
     */
    org.openxmlformats.schemas.drawingml.x2006.diagram.CTAdj[] getAdjArray();

    /**
     * Gets ith "adj" element
     */
    org.openxmlformats.schemas.drawingml.x2006.diagram.CTAdj getAdjArray(int i);

    /**
     * Returns number of "adj" element
     */
    int sizeOfAdjArray();

    /**
     * Sets array of all "adj" element
     */
    void setAdjArray(org.openxmlformats.schemas.drawingml.x2006.diagram.CTAdj[] adjArray);

    /**
     * Sets ith "adj" element
     */
    void setAdjArray(int i, org.openxmlformats.schemas.drawingml.x2006.diagram.CTAdj adj);

    /**
     * Inserts and returns a new empty value (as xml) as the ith "adj" element
     */
    org.openxmlformats.schemas.drawingml.x2006.diagram.CTAdj insertNewAdj(int i);

    /**
     * Appends and returns a new empty value (as xml) as the last "adj" element
     */
    org.openxmlformats.schemas.drawingml.x2006.diagram.CTAdj addNewAdj();

    /**
     * Removes the ith "adj" element
     */
    void removeAdj(int i);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy