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

org.openxmlformats.schemas.officeDocument.x2006.bibliography.CTNameListType Maven / Gradle / Ivy

Go to download

XmlBeans generated from the Ecma supplied xsds (since POI 5.0.0, the 5th edition is used): https://www.ecma-international.org/publications/standards/Ecma-376.htm

There is a newer version: 5.2.5
Show newest version
/*
 * XML Type:  CT_NameListType
 * Namespace: http://schemas.openxmlformats.org/officeDocument/2006/bibliography
 * Java type: org.openxmlformats.schemas.officeDocument.x2006.bibliography.CTNameListType
 *
 * Automatically generated - do not modify.
 */
package org.openxmlformats.schemas.officeDocument.x2006.bibliography;

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


    /**
     * Gets a List of "Person" elements
     */
    java.util.List getPersonList();

    /**
     * Gets array of all "Person" elements
     */
    org.openxmlformats.schemas.officeDocument.x2006.bibliography.CTPersonType[] getPersonArray();

    /**
     * Gets ith "Person" element
     */
    org.openxmlformats.schemas.officeDocument.x2006.bibliography.CTPersonType getPersonArray(int i);

    /**
     * Returns number of "Person" element
     */
    int sizeOfPersonArray();

    /**
     * Sets array of all "Person" element
     */
    void setPersonArray(org.openxmlformats.schemas.officeDocument.x2006.bibliography.CTPersonType[] personArray);

    /**
     * Sets ith "Person" element
     */
    void setPersonArray(int i, org.openxmlformats.schemas.officeDocument.x2006.bibliography.CTPersonType person);

    /**
     * Inserts and returns a new empty value (as xml) as the ith "Person" element
     */
    org.openxmlformats.schemas.officeDocument.x2006.bibliography.CTPersonType insertNewPerson(int i);

    /**
     * Appends and returns a new empty value (as xml) as the last "Person" element
     */
    org.openxmlformats.schemas.officeDocument.x2006.bibliography.CTPersonType addNewPerson();

    /**
     * Removes the ith "Person" element
     */
    void removePerson(int i);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy