org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty 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_MemberProperty
* Namespace: http://schemas.openxmlformats.org/spreadsheetml/2006/main
* Java type: org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty
*
* Automatically generated - do not modify.
*/
package org.openxmlformats.schemas.spreadsheetml.x2006.main;
/**
* An XML CT_MemberProperty(@http://schemas.openxmlformats.org/spreadsheetml/2006/main).
*
* This is a complex type.
*/
public interface CTMemberProperty extends org.apache.xmlbeans.XmlObject
{
org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
Factory.getTypeLoader().resolveHandle("ctmemberpropertyd0d8type");
/**
* Gets the "name" attribute
*/
java.lang.String getName();
/**
* Gets (as xml) the "name" attribute
*/
org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STXstring xgetName();
/**
* True if has "name" attribute
*/
boolean isSetName();
/**
* 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);
/**
* Unsets the "name" attribute
*/
void unsetName();
/**
* Gets the "showCell" attribute
*/
boolean getShowCell();
/**
* Gets (as xml) the "showCell" attribute
*/
org.apache.xmlbeans.XmlBoolean xgetShowCell();
/**
* True if has "showCell" attribute
*/
boolean isSetShowCell();
/**
* Sets the "showCell" attribute
*/
void setShowCell(boolean showCell);
/**
* Sets (as xml) the "showCell" attribute
*/
void xsetShowCell(org.apache.xmlbeans.XmlBoolean showCell);
/**
* Unsets the "showCell" attribute
*/
void unsetShowCell();
/**
* Gets the "showTip" attribute
*/
boolean getShowTip();
/**
* Gets (as xml) the "showTip" attribute
*/
org.apache.xmlbeans.XmlBoolean xgetShowTip();
/**
* True if has "showTip" attribute
*/
boolean isSetShowTip();
/**
* Sets the "showTip" attribute
*/
void setShowTip(boolean showTip);
/**
* Sets (as xml) the "showTip" attribute
*/
void xsetShowTip(org.apache.xmlbeans.XmlBoolean showTip);
/**
* Unsets the "showTip" attribute
*/
void unsetShowTip();
/**
* Gets the "showAsCaption" attribute
*/
boolean getShowAsCaption();
/**
* Gets (as xml) the "showAsCaption" attribute
*/
org.apache.xmlbeans.XmlBoolean xgetShowAsCaption();
/**
* True if has "showAsCaption" attribute
*/
boolean isSetShowAsCaption();
/**
* Sets the "showAsCaption" attribute
*/
void setShowAsCaption(boolean showAsCaption);
/**
* Sets (as xml) the "showAsCaption" attribute
*/
void xsetShowAsCaption(org.apache.xmlbeans.XmlBoolean showAsCaption);
/**
* Unsets the "showAsCaption" attribute
*/
void unsetShowAsCaption();
/**
* Gets the "nameLen" attribute
*/
long getNameLen();
/**
* Gets (as xml) the "nameLen" attribute
*/
org.apache.xmlbeans.XmlUnsignedInt xgetNameLen();
/**
* True if has "nameLen" attribute
*/
boolean isSetNameLen();
/**
* Sets the "nameLen" attribute
*/
void setNameLen(long nameLen);
/**
* Sets (as xml) the "nameLen" attribute
*/
void xsetNameLen(org.apache.xmlbeans.XmlUnsignedInt nameLen);
/**
* Unsets the "nameLen" attribute
*/
void unsetNameLen();
/**
* Gets the "pPos" attribute
*/
long getPPos();
/**
* Gets (as xml) the "pPos" attribute
*/
org.apache.xmlbeans.XmlUnsignedInt xgetPPos();
/**
* True if has "pPos" attribute
*/
boolean isSetPPos();
/**
* Sets the "pPos" attribute
*/
void setPPos(long pPos);
/**
* Sets (as xml) the "pPos" attribute
*/
void xsetPPos(org.apache.xmlbeans.XmlUnsignedInt pPos);
/**
* Unsets the "pPos" attribute
*/
void unsetPPos();
/**
* Gets the "pLen" attribute
*/
long getPLen();
/**
* Gets (as xml) the "pLen" attribute
*/
org.apache.xmlbeans.XmlUnsignedInt xgetPLen();
/**
* True if has "pLen" attribute
*/
boolean isSetPLen();
/**
* Sets the "pLen" attribute
*/
void setPLen(long pLen);
/**
* Sets (as xml) the "pLen" attribute
*/
void xsetPLen(org.apache.xmlbeans.XmlUnsignedInt pLen);
/**
* Unsets the "pLen" attribute
*/
void unsetPLen();
/**
* Gets the "level" attribute
*/
long getLevel();
/**
* Gets (as xml) the "level" attribute
*/
org.apache.xmlbeans.XmlUnsignedInt xgetLevel();
/**
* True if has "level" attribute
*/
boolean isSetLevel();
/**
* Sets the "level" attribute
*/
void setLevel(long level);
/**
* Sets (as xml) the "level" attribute
*/
void xsetLevel(org.apache.xmlbeans.XmlUnsignedInt level);
/**
* Unsets the "level" attribute
*/
void unsetLevel();
/**
* Gets the "field" attribute
*/
long getField();
/**
* Gets (as xml) the "field" attribute
*/
org.apache.xmlbeans.XmlUnsignedInt xgetField();
/**
* Sets the "field" attribute
*/
void setField(long field);
/**
* Sets (as xml) the "field" attribute
*/
void xsetField(org.apache.xmlbeans.XmlUnsignedInt field);
/**
* A factory class with static methods for creating instances
* of this type.
*/
final class Factory
{
private static synchronized org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder getTypeLoader() {
return org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem;
}
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty newInstance() {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty) getTypeLoader().newInstance( type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty newInstance(org.apache.xmlbeans.XmlOptions options) {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty) getTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty) getTypeLoader().parse( xmlAsString, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty) getTypeLoader().parse( xmlAsString, type, options ); }
/** @param file the file from which to load an xml document */
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty) getTypeLoader().parse( file, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty) getTypeLoader().parse( file, type, options ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty) getTypeLoader().parse( u, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty) getTypeLoader().parse( u, type, options ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty) getTypeLoader().parse( is, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty) getTypeLoader().parse( is, type, options ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty) getTypeLoader().parse( r, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty) getTypeLoader().parse( r, type, options ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty) getTypeLoader().parse( sr, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty) getTypeLoader().parse( sr, type, options ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty) getTypeLoader().parse( node, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMemberProperty) getTypeLoader().parse( node, type, options ); }
private Factory() { } // No instance of this class allowed
}
}