org.openxmlformats.schemas.officeDocument.x2006.math.CTEqArr 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_EqArr
* Namespace: http://schemas.openxmlformats.org/officeDocument/2006/math
* Java type: org.openxmlformats.schemas.officeDocument.x2006.math.CTEqArr
*
* Automatically generated - do not modify.
*/
package org.openxmlformats.schemas.officeDocument.x2006.math;
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_EqArr(@http://schemas.openxmlformats.org/officeDocument/2006/math).
*
* This is a complex type.
*/
public interface CTEqArr extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "cteqarr9667type");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "eqArrPr" element
*/
org.openxmlformats.schemas.officeDocument.x2006.math.CTEqArrPr getEqArrPr();
/**
* True if has "eqArrPr" element
*/
boolean isSetEqArrPr();
/**
* Sets the "eqArrPr" element
*/
void setEqArrPr(org.openxmlformats.schemas.officeDocument.x2006.math.CTEqArrPr eqArrPr);
/**
* Appends and returns a new empty "eqArrPr" element
*/
org.openxmlformats.schemas.officeDocument.x2006.math.CTEqArrPr addNewEqArrPr();
/**
* Unsets the "eqArrPr" element
*/
void unsetEqArrPr();
/**
* Gets a List of "e" elements
*/
java.util.List getEList();
/**
* Gets array of all "e" elements
*/
org.openxmlformats.schemas.officeDocument.x2006.math.CTOMathArg[] getEArray();
/**
* Gets ith "e" element
*/
org.openxmlformats.schemas.officeDocument.x2006.math.CTOMathArg getEArray(int i);
/**
* Returns number of "e" element
*/
int sizeOfEArray();
/**
* Sets array of all "e" element
*/
void setEArray(org.openxmlformats.schemas.officeDocument.x2006.math.CTOMathArg[] eArray);
/**
* Sets ith "e" element
*/
void setEArray(int i, org.openxmlformats.schemas.officeDocument.x2006.math.CTOMathArg e);
/**
* Inserts and returns a new empty value (as xml) as the ith "e" element
*/
org.openxmlformats.schemas.officeDocument.x2006.math.CTOMathArg insertNewE(int i);
/**
* Appends and returns a new empty value (as xml) as the last "e" element
*/
org.openxmlformats.schemas.officeDocument.x2006.math.CTOMathArg addNewE();
/**
* Removes the ith "e" element
*/
void removeE(int i);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy