
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTOleItems Maven / Gradle / Ivy
/*
* XML Type: CT_OleItems
* Namespace: http://schemas.openxmlformats.org/spreadsheetml/2006/main
* Java type: org.openxmlformats.schemas.spreadsheetml.x2006.main.CTOleItems
*
* 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_OleItems(@http://schemas.openxmlformats.org/spreadsheetml/2006/main).
*
* This is a complex type.
*/
public interface CTOleItems extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "ctoleitems7b41type");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets a List of "oleItem" elements
*/
java.util.List getOleItemList();
/**
* Gets array of all "oleItem" elements
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTOleItem[] getOleItemArray();
/**
* Gets ith "oleItem" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTOleItem getOleItemArray(int i);
/**
* Returns number of "oleItem" element
*/
int sizeOfOleItemArray();
/**
* Sets array of all "oleItem" element
*/
void setOleItemArray(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTOleItem[] oleItemArray);
/**
* Sets ith "oleItem" element
*/
void setOleItemArray(int i, org.openxmlformats.schemas.spreadsheetml.x2006.main.CTOleItem oleItem);
/**
* Inserts and returns a new empty value (as xml) as the ith "oleItem" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTOleItem insertNewOleItem(int i);
/**
* Appends and returns a new empty value (as xml) as the last "oleItem" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTOleItem addNewOleItem();
/**
* Removes the ith "oleItem" element
*/
void removeOleItem(int i);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy