org.openxmlformats.schemas.officeDocument.x2006.math.CTD Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apache-poi-ooxml Show documentation
Show all versions of apache-poi-ooxml Show documentation
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.
/*
* XML Type: CT_D
* Namespace: http://schemas.openxmlformats.org/officeDocument/2006/math
* Java type: org.openxmlformats.schemas.officeDocument.x2006.math.CTD
*
* 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_D(@http://schemas.openxmlformats.org/officeDocument/2006/math).
*
* This is a complex type.
*/
public interface CTD extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "ctd1938type");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "dPr" element
*/
org.openxmlformats.schemas.officeDocument.x2006.math.CTDPr getDPr();
/**
* True if has "dPr" element
*/
boolean isSetDPr();
/**
* Sets the "dPr" element
*/
void setDPr(org.openxmlformats.schemas.officeDocument.x2006.math.CTDPr dPr);
/**
* Appends and returns a new empty "dPr" element
*/
org.openxmlformats.schemas.officeDocument.x2006.math.CTDPr addNewDPr();
/**
* Unsets the "dPr" element
*/
void unsetDPr();
/**
* 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);
}