org.openxmlformats.schemas.spreadsheetml.x2006.main.CTPatternFill 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_PatternFill
* Namespace: http://schemas.openxmlformats.org/spreadsheetml/2006/main
* Java type: org.openxmlformats.schemas.spreadsheetml.x2006.main.CTPatternFill
*
* 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_PatternFill(@http://schemas.openxmlformats.org/spreadsheetml/2006/main).
*
* This is a complex type.
*/
public interface CTPatternFill extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "ctpatternfill7452type");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "fgColor" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTColor getFgColor();
/**
* True if has "fgColor" element
*/
boolean isSetFgColor();
/**
* Sets the "fgColor" element
*/
void setFgColor(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTColor fgColor);
/**
* Appends and returns a new empty "fgColor" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTColor addNewFgColor();
/**
* Unsets the "fgColor" element
*/
void unsetFgColor();
/**
* Gets the "bgColor" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTColor getBgColor();
/**
* True if has "bgColor" element
*/
boolean isSetBgColor();
/**
* Sets the "bgColor" element
*/
void setBgColor(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTColor bgColor);
/**
* Appends and returns a new empty "bgColor" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTColor addNewBgColor();
/**
* Unsets the "bgColor" element
*/
void unsetBgColor();
/**
* Gets the "patternType" attribute
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.STPatternType.Enum getPatternType();
/**
* Gets (as xml) the "patternType" attribute
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.STPatternType xgetPatternType();
/**
* True if has "patternType" attribute
*/
boolean isSetPatternType();
/**
* Sets the "patternType" attribute
*/
void setPatternType(org.openxmlformats.schemas.spreadsheetml.x2006.main.STPatternType.Enum patternType);
/**
* Sets (as xml) the "patternType" attribute
*/
void xsetPatternType(org.openxmlformats.schemas.spreadsheetml.x2006.main.STPatternType patternType);
/**
* Unsets the "patternType" attribute
*/
void unsetPatternType();
}