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

com.microsoft.schemas.office.visio.x2012.main.DataColumnsType 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:  DataColumns_Type
 * Namespace: http://schemas.microsoft.com/office/visio/2012/main
 * Java type: com.microsoft.schemas.office.visio.x2012.main.DataColumnsType
 *
 * Automatically generated - do not modify.
 */
package com.microsoft.schemas.office.visio.x2012.main;


/**
 * An XML DataColumns_Type(@http://schemas.microsoft.com/office/visio/2012/main).
 *
 * This is a complex type.
 */
public interface DataColumnsType extends org.apache.xmlbeans.XmlObject
{
    org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
        Factory.getTypeLoader().resolveHandle("datacolumnstype35f8type");
    
    /**
     * Gets a List of "DataColumn" elements
     */
    java.util.List getDataColumnList();
    
    /**
     * Gets array of all "DataColumn" elements
     */
    com.microsoft.schemas.office.visio.x2012.main.DataColumnType[] getDataColumnArray();
    
    /**
     * Gets ith "DataColumn" element
     */
    com.microsoft.schemas.office.visio.x2012.main.DataColumnType getDataColumnArray(int i);
    
    /**
     * Returns number of "DataColumn" element
     */
    int sizeOfDataColumnArray();
    
    /**
     * Sets array of all "DataColumn" element
     */
    void setDataColumnArray(com.microsoft.schemas.office.visio.x2012.main.DataColumnType[] dataColumnArray);
    
    /**
     * Sets ith "DataColumn" element
     */
    void setDataColumnArray(int i, com.microsoft.schemas.office.visio.x2012.main.DataColumnType dataColumn);
    
    /**
     * Inserts and returns a new empty value (as xml) as the ith "DataColumn" element
     */
    com.microsoft.schemas.office.visio.x2012.main.DataColumnType insertNewDataColumn(int i);
    
    /**
     * Appends and returns a new empty value (as xml) as the last "DataColumn" element
     */
    com.microsoft.schemas.office.visio.x2012.main.DataColumnType addNewDataColumn();
    
    /**
     * Removes the ith "DataColumn" element
     */
    void removeDataColumn(int i);
    
    /**
     * Gets the "SortColumn" attribute
     */
    java.lang.String getSortColumn();
    
    /**
     * Gets (as xml) the "SortColumn" attribute
     */
    org.apache.xmlbeans.XmlString xgetSortColumn();
    
    /**
     * True if has "SortColumn" attribute
     */
    boolean isSetSortColumn();
    
    /**
     * Sets the "SortColumn" attribute
     */
    void setSortColumn(java.lang.String sortColumn);
    
    /**
     * Sets (as xml) the "SortColumn" attribute
     */
    void xsetSortColumn(org.apache.xmlbeans.XmlString sortColumn);
    
    /**
     * Unsets the "SortColumn" attribute
     */
    void unsetSortColumn();
    
    /**
     * Gets the "SortAsc" attribute
     */
    boolean getSortAsc();
    
    /**
     * Gets (as xml) the "SortAsc" attribute
     */
    org.apache.xmlbeans.XmlBoolean xgetSortAsc();
    
    /**
     * True if has "SortAsc" attribute
     */
    boolean isSetSortAsc();
    
    /**
     * Sets the "SortAsc" attribute
     */
    void setSortAsc(boolean sortAsc);
    
    /**
     * Sets (as xml) the "SortAsc" attribute
     */
    void xsetSortAsc(org.apache.xmlbeans.XmlBoolean sortAsc);
    
    /**
     * Unsets the "SortAsc" attribute
     */
    void unsetSortAsc();
    
    /**
     * 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.DataColumnsType newInstance() {
          return (com.microsoft.schemas.office.visio.x2012.main.DataColumnsType) getTypeLoader().newInstance( type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataColumnsType newInstance(org.apache.xmlbeans.XmlOptions options) {
          return (com.microsoft.schemas.office.visio.x2012.main.DataColumnsType) getTypeLoader().newInstance( type, options ); }
        
        /** @param xmlAsString the string value to parse */
        public static com.microsoft.schemas.office.visio.x2012.main.DataColumnsType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataColumnsType) getTypeLoader().parse( xmlAsString, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataColumnsType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataColumnsType) 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.DataColumnsType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataColumnsType) getTypeLoader().parse( file, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataColumnsType 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.DataColumnsType) getTypeLoader().parse( file, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataColumnsType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataColumnsType) getTypeLoader().parse( u, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataColumnsType 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.DataColumnsType) getTypeLoader().parse( u, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataColumnsType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataColumnsType) getTypeLoader().parse( is, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataColumnsType 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.DataColumnsType) getTypeLoader().parse( is, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataColumnsType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataColumnsType) getTypeLoader().parse( r, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataColumnsType 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.DataColumnsType) getTypeLoader().parse( r, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataColumnsType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataColumnsType) getTypeLoader().parse( sr, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataColumnsType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataColumnsType) getTypeLoader().parse( sr, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataColumnsType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataColumnsType) getTypeLoader().parse( node, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataColumnsType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataColumnsType) getTypeLoader().parse( node, type, options ); }
        
        private Factory() { } // No instance of this class allowed
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy