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

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


/**
 * An XML FooterMargin_Type(@http://schemas.microsoft.com/office/visio/2012/main).
 *
 * This is an atomic type that is a restriction of com.microsoft.schemas.office.visio.x2012.main.FooterMarginType.
 */
public interface FooterMarginType extends org.apache.xmlbeans.XmlDouble
{
    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
        org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(FooterMarginType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sF1327CCA741569E70F9CA8C9AF9B44B2").resolveHandle("footermargintypead70type");
    
    /**
     * Gets the "Unit" attribute
     */
    java.lang.String getUnit();
    
    /**
     * Gets (as xml) the "Unit" attribute
     */
    org.apache.xmlbeans.XmlString xgetUnit();
    
    /**
     * True if has "Unit" attribute
     */
    boolean isSetUnit();
    
    /**
     * Sets the "Unit" attribute
     */
    void setUnit(java.lang.String unit);
    
    /**
     * Sets (as xml) the "Unit" attribute
     */
    void xsetUnit(org.apache.xmlbeans.XmlString unit);
    
    /**
     * Unsets the "Unit" attribute
     */
    void unsetUnit();
    
    /**
     * A factory class with static methods for creating instances
     * of this type.
     */
    
    public static final class Factory
    {
        public static com.microsoft.schemas.office.visio.x2012.main.FooterMarginType newInstance() {
          return (com.microsoft.schemas.office.visio.x2012.main.FooterMarginType) org.apache.poi.POIXMLTypeLoader.newInstance( type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.FooterMarginType newInstance(org.apache.xmlbeans.XmlOptions options) {
          return (com.microsoft.schemas.office.visio.x2012.main.FooterMarginType) org.apache.poi.POIXMLTypeLoader.newInstance( type, options ); }
        
        /** @param xmlAsString the string value to parse */
        public static com.microsoft.schemas.office.visio.x2012.main.FooterMarginType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.FooterMarginType) org.apache.poi.POIXMLTypeLoader.parse( xmlAsString, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.FooterMarginType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.FooterMarginType) 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.FooterMarginType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.FooterMarginType) org.apache.poi.POIXMLTypeLoader.parse( file, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.FooterMarginType 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.FooterMarginType) org.apache.poi.POIXMLTypeLoader.parse( file, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.FooterMarginType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.FooterMarginType) org.apache.poi.POIXMLTypeLoader.parse( u, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.FooterMarginType 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.FooterMarginType) org.apache.poi.POIXMLTypeLoader.parse( u, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.FooterMarginType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.FooterMarginType) org.apache.poi.POIXMLTypeLoader.parse( is, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.FooterMarginType 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.FooterMarginType) org.apache.poi.POIXMLTypeLoader.parse( is, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.FooterMarginType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.office.visio.x2012.main.FooterMarginType) org.apache.poi.POIXMLTypeLoader.parse( r, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.FooterMarginType 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.FooterMarginType) org.apache.poi.POIXMLTypeLoader.parse( r, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.FooterMarginType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.FooterMarginType) org.apache.poi.POIXMLTypeLoader.parse( sr, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.FooterMarginType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.FooterMarginType) org.apache.poi.POIXMLTypeLoader.parse( sr, type, options ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.FooterMarginType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.FooterMarginType) org.apache.poi.POIXMLTypeLoader.parse( node, type, null ); }
        
        public static com.microsoft.schemas.office.visio.x2012.main.FooterMarginType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.office.visio.x2012.main.FooterMarginType) 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.FooterMarginType 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.FooterMarginType) 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.FooterMarginType 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.FooterMarginType) 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