org.openxmlformats.schemas.officeDocument.x2006.customProperties.CTProperties 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_Properties
* Namespace: http://schemas.openxmlformats.org/officeDocument/2006/custom-properties
* Java type: org.openxmlformats.schemas.officeDocument.x2006.customProperties.CTProperties
*
* Automatically generated - do not modify.
*/
package org.openxmlformats.schemas.officeDocument.x2006.customProperties;
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_Properties(@http://schemas.openxmlformats.org/officeDocument/2006/custom-properties).
*
* This is a complex type.
*/
public interface CTProperties extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "ctproperties2c18type");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets a List of "property" elements
*/
java.util.List getPropertyList();
/**
* Gets array of all "property" elements
*/
org.openxmlformats.schemas.officeDocument.x2006.customProperties.CTProperty[] getPropertyArray();
/**
* Gets ith "property" element
*/
org.openxmlformats.schemas.officeDocument.x2006.customProperties.CTProperty getPropertyArray(int i);
/**
* Returns number of "property" element
*/
int sizeOfPropertyArray();
/**
* Sets array of all "property" element
*/
void setPropertyArray(org.openxmlformats.schemas.officeDocument.x2006.customProperties.CTProperty[] propertyArray);
/**
* Sets ith "property" element
*/
void setPropertyArray(int i, org.openxmlformats.schemas.officeDocument.x2006.customProperties.CTProperty property);
/**
* Inserts and returns a new empty value (as xml) as the ith "property" element
*/
org.openxmlformats.schemas.officeDocument.x2006.customProperties.CTProperty insertNewProperty(int i);
/**
* Appends and returns a new empty value (as xml) as the last "property" element
*/
org.openxmlformats.schemas.officeDocument.x2006.customProperties.CTProperty addNewProperty();
/**
* Removes the ith "property" element
*/
void removeProperty(int i);
}