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

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


    /**
     * Gets a List of "if" elements
     */
    java.util.List getIfList();

    /**
     * Gets array of all "if" elements
     */
    org.openxmlformats.schemas.drawingml.x2006.diagram.CTWhen[] getIfArray();

    /**
     * Gets ith "if" element
     */
    org.openxmlformats.schemas.drawingml.x2006.diagram.CTWhen getIfArray(int i);

    /**
     * Returns number of "if" element
     */
    int sizeOfIfArray();

    /**
     * Sets array of all "if" element
     */
    void setIfArray(org.openxmlformats.schemas.drawingml.x2006.diagram.CTWhen[] xifArray);

    /**
     * Sets ith "if" element
     */
    void setIfArray(int i, org.openxmlformats.schemas.drawingml.x2006.diagram.CTWhen xif);

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

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

    /**
     * Removes the ith "if" element
     */
    void removeIf(int i);

    /**
     * Gets the "else" element
     */
    org.openxmlformats.schemas.drawingml.x2006.diagram.CTOtherwise getElse();

    /**
     * True if has "else" element
     */
    boolean isSetElse();

    /**
     * Sets the "else" element
     */
    void setElse(org.openxmlformats.schemas.drawingml.x2006.diagram.CTOtherwise xelse);

    /**
     * Appends and returns a new empty "else" element
     */
    org.openxmlformats.schemas.drawingml.x2006.diagram.CTOtherwise addNewElse();

    /**
     * Unsets the "else" element
     */
    void unsetElse();

    /**
     * Gets the "name" attribute
     */
    java.lang.String getName();

    /**
     * Gets (as xml) the "name" attribute
     */
    org.apache.xmlbeans.XmlString xgetName();

    /**
     * True if has "name" attribute
     */
    boolean isSetName();

    /**
     * Sets the "name" attribute
     */
    void setName(java.lang.String name);

    /**
     * Sets (as xml) the "name" attribute
     */
    void xsetName(org.apache.xmlbeans.XmlString name);

    /**
     * Unsets the "name" attribute
     */
    void unsetName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy