org.openxmlformats.schemas.spreadsheetml.x2006.main.CTExternalDefinedNames 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_ExternalDefinedNames
* Namespace: http://schemas.openxmlformats.org/spreadsheetml/2006/main
* Java type: org.openxmlformats.schemas.spreadsheetml.x2006.main.CTExternalDefinedNames
*
* Automatically generated - do not modify.
*/
package org.openxmlformats.schemas.spreadsheetml.x2006.main;
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_ExternalDefinedNames(@http://schemas.openxmlformats.org/spreadsheetml/2006/main).
*
* This is a complex type.
*/
public interface CTExternalDefinedNames extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "ctexternaldefinednamesccf3type");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets a List of "definedName" elements
*/
java.util.List getDefinedNameList();
/**
* Gets array of all "definedName" elements
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTExternalDefinedName[] getDefinedNameArray();
/**
* Gets ith "definedName" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTExternalDefinedName getDefinedNameArray(int i);
/**
* Returns number of "definedName" element
*/
int sizeOfDefinedNameArray();
/**
* Sets array of all "definedName" element
*/
void setDefinedNameArray(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTExternalDefinedName[] definedNameArray);
/**
* Sets ith "definedName" element
*/
void setDefinedNameArray(int i, org.openxmlformats.schemas.spreadsheetml.x2006.main.CTExternalDefinedName definedName);
/**
* Inserts and returns a new empty value (as xml) as the ith "definedName" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTExternalDefinedName insertNewDefinedName(int i);
/**
* Appends and returns a new empty value (as xml) as the last "definedName" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTExternalDefinedName addNewDefinedName();
/**
* Removes the ith "definedName" element
*/
void removeDefinedName(int i);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy