org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTables 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_Tables
* Namespace: http://schemas.openxmlformats.org/spreadsheetml/2006/main
* Java type: org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTables
*
* 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_Tables(@http://schemas.openxmlformats.org/spreadsheetml/2006/main).
*
* This is a complex type.
*/
public interface CTTables extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "cttablesda2etype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets a List of "m" elements
*/
java.util.List getMList();
/**
* Gets array of all "m" elements
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableMissing[] getMArray();
/**
* Gets ith "m" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableMissing getMArray(int i);
/**
* Returns number of "m" element
*/
int sizeOfMArray();
/**
* Sets array of all "m" element
*/
void setMArray(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableMissing[] mArray);
/**
* Sets ith "m" element
*/
void setMArray(int i, org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableMissing m);
/**
* Inserts and returns a new empty value (as xml) as the ith "m" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableMissing insertNewM(int i);
/**
* Appends and returns a new empty value (as xml) as the last "m" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableMissing addNewM();
/**
* Removes the ith "m" element
*/
void removeM(int i);
/**
* Gets a List of "s" elements
*/
java.util.List getSList();
/**
* Gets array of all "s" elements
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTXStringElement[] getSArray();
/**
* Gets ith "s" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTXStringElement getSArray(int i);
/**
* Returns number of "s" element
*/
int sizeOfSArray();
/**
* Sets array of all "s" element
*/
void setSArray(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTXStringElement[] sArray);
/**
* Sets ith "s" element
*/
void setSArray(int i, org.openxmlformats.schemas.spreadsheetml.x2006.main.CTXStringElement s);
/**
* Inserts and returns a new empty value (as xml) as the ith "s" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTXStringElement insertNewS(int i);
/**
* Appends and returns a new empty value (as xml) as the last "s" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTXStringElement addNewS();
/**
* Removes the ith "s" element
*/
void removeS(int i);
/**
* Gets a List of "x" elements
*/
java.util.List getXList();
/**
* Gets array of all "x" elements
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTIndex[] getXArray();
/**
* Gets ith "x" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTIndex getXArray(int i);
/**
* Returns number of "x" element
*/
int sizeOfXArray();
/**
* Sets array of all "x" element
*/
void setXArray(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTIndex[] xArray);
/**
* Sets ith "x" element
*/
void setXArray(int i, org.openxmlformats.schemas.spreadsheetml.x2006.main.CTIndex x);
/**
* Inserts and returns a new empty value (as xml) as the ith "x" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTIndex insertNewX(int i);
/**
* Appends and returns a new empty value (as xml) as the last "x" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTIndex addNewX();
/**
* Removes the ith "x" element
*/
void removeX(int i);
/**
* Gets the "count" attribute
*/
long getCount();
/**
* Gets (as xml) the "count" attribute
*/
org.apache.xmlbeans.XmlUnsignedInt xgetCount();
/**
* True if has "count" attribute
*/
boolean isSetCount();
/**
* Sets the "count" attribute
*/
void setCount(long count);
/**
* Sets (as xml) the "count" attribute
*/
void xsetCount(org.apache.xmlbeans.XmlUnsignedInt count);
/**
* Unsets the "count" attribute
*/
void unsetCount();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy