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

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

Go to download

XmlBeans generated from the Ecma supplied xsds: http://www.ecma-international.org/publications/files/ECMA-ST/Office%20Open%20XML%20Part%204%20(DOCX).zip

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


/**
 * An XML Sheet_Type(@http://schemas.microsoft.com/office/visio/2012/main).
 *
 * This is a complex type.
 */
public interface SheetType extends org.apache.xmlbeans.XmlObject
{
    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
        org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(SheetType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sF1327CCA741569E70F9CA8C9AF9B44B2").resolveHandle("sheettype25actype");
    
    /**
     * Gets a List of "Cell" elements
     */
    java.util.List getCellList();
    
    /**
     * Gets array of all "Cell" elements
     */
    com.microsoft.schemas.office.visio.x2012.main.CellType[] getCellArray();
    
    /**
     * Gets ith "Cell" element
     */
    com.microsoft.schemas.office.visio.x2012.main.CellType getCellArray(int i);
    
    /**
     * Returns number of "Cell" element
     */
    int sizeOfCellArray();
    
    /**
     * Sets array of all "Cell" element
     */
    void setCellArray(com.microsoft.schemas.office.visio.x2012.main.CellType[] cellArray);
    
    /**
     * Sets ith "Cell" element
     */
    void setCellArray(int i, com.microsoft.schemas.office.visio.x2012.main.CellType cell);
    
    /**
     * Inserts and returns a new empty value (as xml) as the ith "Cell" element
     */
    com.microsoft.schemas.office.visio.x2012.main.CellType insertNewCell(int i);
    
    /**
     * Appends and returns a new empty value (as xml) as the last "Cell" element
     */
    com.microsoft.schemas.office.visio.x2012.main.CellType addNewCell();
    
    /**
     * Removes the ith "Cell" element
     */
    void removeCell(int i);
    
    /**
     * Gets a List of "Trigger" elements
     */
    java.util.List getTriggerList();
    
    /**
     * Gets array of all "Trigger" elements
     */
    com.microsoft.schemas.office.visio.x2012.main.TriggerType[] getTriggerArray();
    
    /**
     * Gets ith "Trigger" element
     */
    com.microsoft.schemas.office.visio.x2012.main.TriggerType getTriggerArray(int i);
    
    /**
     * Returns number of "Trigger" element
     */
    int sizeOfTriggerArray();
    
    /**
     * Sets array of all "Trigger" element
     */
    void setTriggerArray(com.microsoft.schemas.office.visio.x2012.main.TriggerType[] triggerArray);
    
    /**
     * Sets ith "Trigger" element
     */
    void setTriggerArray(int i, com.microsoft.schemas.office.visio.x2012.main.TriggerType trigger);
    
    /**
     * Inserts and returns a new empty value (as xml) as the ith "Trigger" element
     */
    com.microsoft.schemas.office.visio.x2012.main.TriggerType insertNewTrigger(int i);
    
    /**
     * Appends and returns a new empty value (as xml) as the last "Trigger" element
     */
    com.microsoft.schemas.office.visio.x2012.main.TriggerType addNewTrigger();
    
    /**
     * Removes the ith "Trigger" element
     */
    void removeTrigger(int i);
    
    /**
     * Gets a List of "Section" elements
     */
    java.util.List getSectionList();
    
    /**
     * Gets array of all "Section" elements
     */
    com.microsoft.schemas.office.visio.x2012.main.SectionType[] getSectionArray();
    
    /**
     * Gets ith "Section" element
     */
    com.microsoft.schemas.office.visio.x2012.main.SectionType getSectionArray(int i);
    
    /**
     * Returns number of "Section" element
     */
    int sizeOfSectionArray();
    
    /**
     * Sets array of all "Section" element
     */
    void setSectionArray(com.microsoft.schemas.office.visio.x2012.main.SectionType[] sectionArray);
    
    /**
     * Sets ith "Section" element
     */
    void setSectionArray(int i, com.microsoft.schemas.office.visio.x2012.main.SectionType section);
    
    /**
     * Inserts and returns a new empty value (as xml) as the ith "Section" element
     */
    com.microsoft.schemas.office.visio.x2012.main.SectionType insertNewSection(int i);
    
    /**
     * Appends and returns a new empty value (as xml) as the last "Section" element
     */
    com.microsoft.schemas.office.visio.x2012.main.SectionType addNewSection();
    
    /**
     * Removes the ith "Section" element
     */
    void removeSection(int i);
    
    /**
     * Gets the "LineStyle" attribute
     */
    long getLineStyle();
    
    /**
     * Gets (as xml) the "LineStyle" attribute
     */
    org.apache.xmlbeans.XmlUnsignedInt xgetLineStyle();
    
    /**
     * True if has "LineStyle" attribute
     */
    boolean isSetLineStyle();
    
    /**
     * Sets the "LineStyle" attribute
     */
    void setLineStyle(long lineStyle);
    
    /**
     * Sets (as xml) the "LineStyle" attribute
     */
    void xsetLineStyle(org.apache.xmlbeans.XmlUnsignedInt lineStyle);
    
    /**
     * Unsets the "LineStyle" attribute
     */
    void unsetLineStyle();
    
    /**
     * Gets the "FillStyle" attribute
     */
    long getFillStyle();
    
    /**
     * Gets (as xml) the "FillStyle" attribute
     */
    org.apache.xmlbeans.XmlUnsignedInt xgetFillStyle();
    
    /**
     * True if has "FillStyle" attribute
     */
    boolean isSetFillStyle();
    
    /**
     * Sets the "FillStyle" attribute
     */
    void setFillStyle(long fillStyle);
    
    /**
     * Sets (as xml) the "FillStyle" attribute
     */
    void xsetFillStyle(org.apache.xmlbeans.XmlUnsignedInt fillStyle);
    
    /**
     * Unsets the "FillStyle" attribute
     */
    void unsetFillStyle();
    
    /**
     * Gets the "TextStyle" attribute
     */
    long getTextStyle();
    
    /**
     * Gets (as xml) the "TextStyle" attribute
     */
    org.apache.xmlbeans.XmlUnsignedInt xgetTextStyle();
    
    /**
     * True if has "TextStyle" attribute
     */
    boolean isSetTextStyle();
    
    /**
     * Sets the "TextStyle" attribute
     */
    void setTextStyle(long textStyle);
    
    /**
     * Sets (as xml) the "TextStyle" attribute
     */
    void xsetTextStyle(org.apache.xmlbeans.XmlUnsignedInt textStyle);
    
    /**
     * Unsets the "TextStyle" attribute
     */
    void unsetTextStyle();
    
    /**
     * A factory class with static methods for creating instances
     * of this type.
     */
    
    public static final class Factory
    {
        /** @deprecated No need to be able to create instances of abstract types */
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType newInstance() {
          return (com.microsoft.schemas.office.visio.x2012.main.SheetType) org.apache.poi.POIXMLTypeLoader.newInstance( type, null ); }
        
        /** @deprecated No need to be able to create instances of abstract types */
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType newInstance(org.apache.xmlbeans.XmlOptions options) {
          return (com.microsoft.schemas.office.visio.x2012.main.SheetType) org.apache.poi.POIXMLTypeLoader.newInstance( type, options ); }
        
        /** @param xmlAsString the string value to parse */
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.SheetType) org.apache.poi.POIXMLTypeLoader.parse( xmlAsString, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.SheetType) org.apache.poi.POIXMLTypeLoader.parse( xmlAsString, type, options ); }
        
        /** @param file the file from which to load an xml document */
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.SheetType) org.apache.poi.POIXMLTypeLoader.parse( file, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType 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.SheetType) org.apache.poi.POIXMLTypeLoader.parse( file, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.SheetType) org.apache.poi.POIXMLTypeLoader.parse( u, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType 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.SheetType) org.apache.poi.POIXMLTypeLoader.parse( u, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.SheetType) org.apache.poi.POIXMLTypeLoader.parse( is, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType 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.SheetType) org.apache.poi.POIXMLTypeLoader.parse( is, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.SheetType) org.apache.poi.POIXMLTypeLoader.parse( r, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType 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.SheetType) org.apache.poi.POIXMLTypeLoader.parse( r, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.SheetType) org.apache.poi.POIXMLTypeLoader.parse( sr, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.SheetType) org.apache.poi.POIXMLTypeLoader.parse( sr, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.SheetType) org.apache.poi.POIXMLTypeLoader.parse( node, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.SheetType) org.apache.poi.POIXMLTypeLoader.parse( node, type, options ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
          return (com.microsoft.schemas.office.visio.x2012.main.SheetType) org.apache.poi.POIXMLTypeLoader.parse( xis, type, null ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        public static com.microsoft.schemas.office.visio.x2012.main.SheetType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
          return (com.microsoft.schemas.office.visio.x2012.main.SheetType) org.apache.poi.POIXMLTypeLoader.parse( xis, type, options ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
          return org.apache.poi.POIXMLTypeLoader.newValidatingXMLInputStream( xis, type, null ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
          return org.apache.poi.POIXMLTypeLoader.newValidatingXMLInputStream( xis, type, options ); }
        
        private Factory() { } // No instance of this class allowed
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy