All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.schemas.office.visio.x2012.main.SectionDefType Maven / Gradle / Ivy

Go to download

XmlBeans generated from the Ecma supplied xsds (since POI 5.0.0, the 5th edition is used): https://www.ecma-international.org/publications/standards/Ecma-376.htm

There is a newer version: 5.2.5
Show newest version
/*
 * XML Type:  SectionDef_Type
 * Namespace: http://schemas.microsoft.com/office/visio/2012/main
 * Java type: com.microsoft.schemas.office.visio.x2012.main.SectionDefType
 *
 * Automatically generated - do not modify.
 */
package com.microsoft.schemas.office.visio.x2012.main;


/**
 * An XML SectionDef_Type(@http://schemas.microsoft.com/office/visio/2012/main).
 *
 * This is a complex type.
 */
public interface SectionDefType extends org.apache.xmlbeans.XmlObject
{
    org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
        Factory.getTypeLoader().resolveHandle("sectiondeftype4f59type");
    
    /**
     * Gets a List of "CellDef" elements
     */
    java.util.List getCellDefList();
    
    /**
     * Gets array of all "CellDef" elements
     */
    com.microsoft.schemas.office.visio.x2012.main.CellDefType[] getCellDefArray();
    
    /**
     * Gets ith "CellDef" element
     */
    com.microsoft.schemas.office.visio.x2012.main.CellDefType getCellDefArray(int i);
    
    /**
     * Returns number of "CellDef" element
     */
    int sizeOfCellDefArray();
    
    /**
     * Sets array of all "CellDef" element
     */
    void setCellDefArray(com.microsoft.schemas.office.visio.x2012.main.CellDefType[] cellDefArray);
    
    /**
     * Sets ith "CellDef" element
     */
    void setCellDefArray(int i, com.microsoft.schemas.office.visio.x2012.main.CellDefType cellDef);
    
    /**
     * Inserts and returns a new empty value (as xml) as the ith "CellDef" element
     */
    com.microsoft.schemas.office.visio.x2012.main.CellDefType insertNewCellDef(int i);
    
    /**
     * Appends and returns a new empty value (as xml) as the last "CellDef" element
     */
    com.microsoft.schemas.office.visio.x2012.main.CellDefType addNewCellDef();
    
    /**
     * Removes the ith "CellDef" element
     */
    void removeCellDef(int i);
    
    /**
     * Gets the "RowDef" element
     */
    com.microsoft.schemas.office.visio.x2012.main.RowDefType getRowDef();
    
    /**
     * True if has "RowDef" element
     */
    boolean isSetRowDef();
    
    /**
     * Sets the "RowDef" element
     */
    void setRowDef(com.microsoft.schemas.office.visio.x2012.main.RowDefType rowDef);
    
    /**
     * Appends and returns a new empty "RowDef" element
     */
    com.microsoft.schemas.office.visio.x2012.main.RowDefType addNewRowDef();
    
    /**
     * Unsets the "RowDef" element
     */
    void unsetRowDef();
    
    /**
     * Gets the "N" attribute
     */
    java.lang.String getN();
    
    /**
     * Gets (as xml) the "N" attribute
     */
    org.apache.xmlbeans.XmlString xgetN();
    
    /**
     * Sets the "N" attribute
     */
    void setN(java.lang.String n);
    
    /**
     * Sets (as xml) the "N" attribute
     */
    void xsetN(org.apache.xmlbeans.XmlString n);
    
    /**
     * Gets the "T" attribute
     */
    java.lang.String getT();
    
    /**
     * Gets (as xml) the "T" attribute
     */
    org.apache.xmlbeans.XmlString xgetT();
    
    /**
     * True if has "T" attribute
     */
    boolean isSetT();
    
    /**
     * Sets the "T" attribute
     */
    void setT(java.lang.String t);
    
    /**
     * Sets (as xml) the "T" attribute
     */
    void xsetT(org.apache.xmlbeans.XmlString t);
    
    /**
     * Unsets the "T" attribute
     */
    void unsetT();
    
    /**
     * Gets the "S" attribute
     */
    short getS();
    
    /**
     * Gets (as xml) the "S" attribute
     */
    org.apache.xmlbeans.XmlUnsignedByte xgetS();
    
    /**
     * True if has "S" attribute
     */
    boolean isSetS();
    
    /**
     * Sets the "S" attribute
     */
    void setS(short s);
    
    /**
     * Sets (as xml) the "S" attribute
     */
    void xsetS(org.apache.xmlbeans.XmlUnsignedByte s);
    
    /**
     * Unsets the "S" attribute
     */
    void unsetS();
    
    /**
     * 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 com.microsoft.schemas.office.visio.x2012.main.SectionDefType newInstance() {
          return (com.microsoft.schemas.office.visio.x2012.main.SectionDefType) getTypeLoader().newInstance( type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SectionDefType newInstance(org.apache.xmlbeans.XmlOptions options) {
          return (com.microsoft.schemas.office.visio.x2012.main.SectionDefType) getTypeLoader().newInstance( type, options ); }
        
        /** @param xmlAsString the string value to parse */
        public static com.microsoft.schemas.office.visio.x2012.main.SectionDefType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.SectionDefType) getTypeLoader().parse( xmlAsString, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SectionDefType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.SectionDefType) getTypeLoader().parse( xmlAsString, type, options ); }
        
        /** @param file the file from which to load an xml document */
        public static com.microsoft.schemas.office.visio.x2012.main.SectionDefType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.SectionDefType) getTypeLoader().parse( file, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SectionDefType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.SectionDefType) getTypeLoader().parse( file, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SectionDefType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.SectionDefType) getTypeLoader().parse( u, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SectionDefType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.SectionDefType) getTypeLoader().parse( u, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SectionDefType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.SectionDefType) getTypeLoader().parse( is, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SectionDefType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.SectionDefType) getTypeLoader().parse( is, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SectionDefType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.SectionDefType) getTypeLoader().parse( r, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SectionDefType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.SectionDefType) getTypeLoader().parse( r, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SectionDefType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.SectionDefType) getTypeLoader().parse( sr, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SectionDefType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.SectionDefType) getTypeLoader().parse( sr, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SectionDefType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.SectionDefType) getTypeLoader().parse( node, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SectionDefType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.SectionDefType) getTypeLoader().parse( node, type, options ); }
        
        private Factory() { } // No instance of this class allowed
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy