org.openxmlformats.schemas.spreadsheetml.x2006.main.CTFutureMetadata 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_FutureMetadata
* Namespace: http://schemas.openxmlformats.org/spreadsheetml/2006/main
* Java type: org.openxmlformats.schemas.spreadsheetml.x2006.main.CTFutureMetadata
*
* 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_FutureMetadata(@http://schemas.openxmlformats.org/spreadsheetml/2006/main).
*
* This is a complex type.
*/
public interface CTFutureMetadata extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "ctfuturemetadata3e9btype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets a List of "bk" elements
*/
java.util.List getBkList();
/**
* Gets array of all "bk" elements
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTFutureMetadataBlock[] getBkArray();
/**
* Gets ith "bk" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTFutureMetadataBlock getBkArray(int i);
/**
* Returns number of "bk" element
*/
int sizeOfBkArray();
/**
* Sets array of all "bk" element
*/
void setBkArray(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTFutureMetadataBlock[] bkArray);
/**
* Sets ith "bk" element
*/
void setBkArray(int i, org.openxmlformats.schemas.spreadsheetml.x2006.main.CTFutureMetadataBlock bk);
/**
* Inserts and returns a new empty value (as xml) as the ith "bk" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTFutureMetadataBlock insertNewBk(int i);
/**
* Appends and returns a new empty value (as xml) as the last "bk" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTFutureMetadataBlock addNewBk();
/**
* Removes the ith "bk" element
*/
void removeBk(int i);
/**
* Gets the "extLst" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTExtensionList getExtLst();
/**
* True if has "extLst" element
*/
boolean isSetExtLst();
/**
* Sets the "extLst" element
*/
void setExtLst(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTExtensionList extLst);
/**
* Appends and returns a new empty "extLst" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTExtensionList addNewExtLst();
/**
* Unsets the "extLst" element
*/
void unsetExtLst();
/**
* Gets the "name" attribute
*/
java.lang.String getName();
/**
* Gets (as xml) the "name" attribute
*/
org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STXstring xgetName();
/**
* Sets the "name" attribute
*/
void setName(java.lang.String name);
/**
* Sets (as xml) the "name" attribute
*/
void xsetName(org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STXstring name);
/**
* 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