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

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


/**
 * An XML DataRecordSets_Type(@http://schemas.microsoft.com/office/visio/2012/main).
 *
 * This is a complex type.
 */
public interface DataRecordSetsType extends org.apache.xmlbeans.XmlObject
{
    org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
        Factory.getTypeLoader().resolveHandle("datarecordsetstype9cadtype");
    
    /**
     * Gets a List of "DataRecordSet" elements
     */
    java.util.List getDataRecordSetList();
    
    /**
     * Gets array of all "DataRecordSet" elements
     */
    com.microsoft.schemas.office.visio.x2012.main.DataRecordSetType[] getDataRecordSetArray();
    
    /**
     * Gets ith "DataRecordSet" element
     */
    com.microsoft.schemas.office.visio.x2012.main.DataRecordSetType getDataRecordSetArray(int i);
    
    /**
     * Returns number of "DataRecordSet" element
     */
    int sizeOfDataRecordSetArray();
    
    /**
     * Sets array of all "DataRecordSet" element
     */
    void setDataRecordSetArray(com.microsoft.schemas.office.visio.x2012.main.DataRecordSetType[] dataRecordSetArray);
    
    /**
     * Sets ith "DataRecordSet" element
     */
    void setDataRecordSetArray(int i, com.microsoft.schemas.office.visio.x2012.main.DataRecordSetType dataRecordSet);
    
    /**
     * Inserts and returns a new empty value (as xml) as the ith "DataRecordSet" element
     */
    com.microsoft.schemas.office.visio.x2012.main.DataRecordSetType insertNewDataRecordSet(int i);
    
    /**
     * Appends and returns a new empty value (as xml) as the last "DataRecordSet" element
     */
    com.microsoft.schemas.office.visio.x2012.main.DataRecordSetType addNewDataRecordSet();
    
    /**
     * Removes the ith "DataRecordSet" element
     */
    void removeDataRecordSet(int i);
    
    /**
     * Gets the "NextID" attribute
     */
    long getNextID();
    
    /**
     * Gets (as xml) the "NextID" attribute
     */
    org.apache.xmlbeans.XmlUnsignedInt xgetNextID();
    
    /**
     * Sets the "NextID" attribute
     */
    void setNextID(long nextID);
    
    /**
     * Sets (as xml) the "NextID" attribute
     */
    void xsetNextID(org.apache.xmlbeans.XmlUnsignedInt nextID);
    
    /**
     * Gets the "ActiveRecordsetID" attribute
     */
    long getActiveRecordsetID();
    
    /**
     * Gets (as xml) the "ActiveRecordsetID" attribute
     */
    org.apache.xmlbeans.XmlUnsignedInt xgetActiveRecordsetID();
    
    /**
     * True if has "ActiveRecordsetID" attribute
     */
    boolean isSetActiveRecordsetID();
    
    /**
     * Sets the "ActiveRecordsetID" attribute
     */
    void setActiveRecordsetID(long activeRecordsetID);
    
    /**
     * Sets (as xml) the "ActiveRecordsetID" attribute
     */
    void xsetActiveRecordsetID(org.apache.xmlbeans.XmlUnsignedInt activeRecordsetID);
    
    /**
     * Unsets the "ActiveRecordsetID" attribute
     */
    void unsetActiveRecordsetID();
    
    /**
     * Gets the "DataWindowOrder" attribute
     */
    java.lang.String getDataWindowOrder();
    
    /**
     * Gets (as xml) the "DataWindowOrder" attribute
     */
    org.apache.xmlbeans.XmlString xgetDataWindowOrder();
    
    /**
     * True if has "DataWindowOrder" attribute
     */
    boolean isSetDataWindowOrder();
    
    /**
     * Sets the "DataWindowOrder" attribute
     */
    void setDataWindowOrder(java.lang.String dataWindowOrder);
    
    /**
     * Sets (as xml) the "DataWindowOrder" attribute
     */
    void xsetDataWindowOrder(org.apache.xmlbeans.XmlString dataWindowOrder);
    
    /**
     * Unsets the "DataWindowOrder" attribute
     */
    void unsetDataWindowOrder();
    
    /**
     * 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.DataRecordSetsType newInstance() {
          return (com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType) getTypeLoader().newInstance( type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType newInstance(org.apache.xmlbeans.XmlOptions options) {
          return (com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType) getTypeLoader().newInstance( type, options ); }
        
        /** @param xmlAsString the string value to parse */
        public static com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType) getTypeLoader().parse( xmlAsString, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType) 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.DataRecordSetsType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType) getTypeLoader().parse( file, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType 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.DataRecordSetsType) getTypeLoader().parse( file, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType) getTypeLoader().parse( u, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType 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.DataRecordSetsType) getTypeLoader().parse( u, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType) getTypeLoader().parse( is, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType 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.DataRecordSetsType) getTypeLoader().parse( is, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType) getTypeLoader().parse( r, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType 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.DataRecordSetsType) getTypeLoader().parse( r, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType) getTypeLoader().parse( sr, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType) getTypeLoader().parse( sr, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType) getTypeLoader().parse( node, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.DataRecordSetsType) getTypeLoader().parse( node, type, options ); }
        
        private Factory() { } // No instance of this class allowed
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy