org.openxmlformats.schemas.spreadsheetml.x2006.main.CTIconSet 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_IconSet
* Namespace: http://schemas.openxmlformats.org/spreadsheetml/2006/main
* Java type: org.openxmlformats.schemas.spreadsheetml.x2006.main.CTIconSet
*
* 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_IconSet(@http://schemas.openxmlformats.org/spreadsheetml/2006/main).
*
* This is a complex type.
*/
public interface CTIconSet extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "cticonset2648type");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets a List of "cfvo" elements
*/
java.util.List getCfvoList();
/**
* Gets array of all "cfvo" elements
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCfvo[] getCfvoArray();
/**
* Gets ith "cfvo" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCfvo getCfvoArray(int i);
/**
* Returns number of "cfvo" element
*/
int sizeOfCfvoArray();
/**
* Sets array of all "cfvo" element
*/
void setCfvoArray(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCfvo[] cfvoArray);
/**
* Sets ith "cfvo" element
*/
void setCfvoArray(int i, org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCfvo cfvo);
/**
* Inserts and returns a new empty value (as xml) as the ith "cfvo" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCfvo insertNewCfvo(int i);
/**
* Appends and returns a new empty value (as xml) as the last "cfvo" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCfvo addNewCfvo();
/**
* Removes the ith "cfvo" element
*/
void removeCfvo(int i);
/**
* Gets the "iconSet" attribute
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.STIconSetType.Enum getIconSet();
/**
* Gets (as xml) the "iconSet" attribute
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.STIconSetType xgetIconSet();
/**
* True if has "iconSet" attribute
*/
boolean isSetIconSet();
/**
* Sets the "iconSet" attribute
*/
void setIconSet(org.openxmlformats.schemas.spreadsheetml.x2006.main.STIconSetType.Enum iconSet);
/**
* Sets (as xml) the "iconSet" attribute
*/
void xsetIconSet(org.openxmlformats.schemas.spreadsheetml.x2006.main.STIconSetType iconSet);
/**
* Unsets the "iconSet" attribute
*/
void unsetIconSet();
/**
* Gets the "showValue" attribute
*/
boolean getShowValue();
/**
* Gets (as xml) the "showValue" attribute
*/
org.apache.xmlbeans.XmlBoolean xgetShowValue();
/**
* True if has "showValue" attribute
*/
boolean isSetShowValue();
/**
* Sets the "showValue" attribute
*/
void setShowValue(boolean showValue);
/**
* Sets (as xml) the "showValue" attribute
*/
void xsetShowValue(org.apache.xmlbeans.XmlBoolean showValue);
/**
* Unsets the "showValue" attribute
*/
void unsetShowValue();
/**
* Gets the "percent" attribute
*/
boolean getPercent();
/**
* Gets (as xml) the "percent" attribute
*/
org.apache.xmlbeans.XmlBoolean xgetPercent();
/**
* True if has "percent" attribute
*/
boolean isSetPercent();
/**
* Sets the "percent" attribute
*/
void setPercent(boolean percent);
/**
* Sets (as xml) the "percent" attribute
*/
void xsetPercent(org.apache.xmlbeans.XmlBoolean percent);
/**
* Unsets the "percent" attribute
*/
void unsetPercent();
/**
* Gets the "reverse" attribute
*/
boolean getReverse();
/**
* Gets (as xml) the "reverse" attribute
*/
org.apache.xmlbeans.XmlBoolean xgetReverse();
/**
* True if has "reverse" attribute
*/
boolean isSetReverse();
/**
* Sets the "reverse" attribute
*/
void setReverse(boolean reverse);
/**
* Sets (as xml) the "reverse" attribute
*/
void xsetReverse(org.apache.xmlbeans.XmlBoolean reverse);
/**
* Unsets the "reverse" attribute
*/
void unsetReverse();
}