AllowincellAttribute.java 源代码


package schemasMicrosoftComOfficeOffice;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import java.net.URL;
import javax.xml.stream.XMLStreamReader;
import org.apache.xmlbeans.SchemaType;
import org.apache.xmlbeans.XmlBeans;
import org.apache.xmlbeans.XmlException;
import org.apache.xmlbeans.XmlObject;
import org.apache.xmlbeans.XmlOptions;
import org.apache.xmlbeans.xml.stream.XMLInputStream;
import org.apache.xmlbeans.xml.stream.XMLStreamException;
import org.w3c.dom.Node;
import schemasMicrosoftComOfficeOffice.STTrueFalse;

public interface AllowincellAttribute extends XmlObject {
    public static final SchemaType type = (SchemaType) XmlBeans.typeSystemForClassLoader(AllowincellAttribute.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("allowincell6e43attrtypetype");

    public static final class Factory {
        private Factory() {
        }

        public static AllowincellAttribute newInstance() {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().newInstance(AllowincellAttribute.type, null);
        }

        public static AllowincellAttribute newInstance(XmlOptions xmlOptions) {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().newInstance(AllowincellAttribute.type, xmlOptions);
        }

        public static XMLInputStream newValidatingXMLInputStream(XMLInputStream xMLInputStream) throws XmlException, XMLStreamException {
            return XmlBeans.getContextTypeLoader().newValidatingXMLInputStream(xMLInputStream, AllowincellAttribute.type, null);
        }

        public static XMLInputStream newValidatingXMLInputStream(XMLInputStream xMLInputStream, XmlOptions xmlOptions) throws XmlException, XMLStreamException {
            return XmlBeans.getContextTypeLoader().newValidatingXMLInputStream(xMLInputStream, AllowincellAttribute.type, xmlOptions);
        }

        public static AllowincellAttribute parse(File file) throws XmlException, IOException {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().parse(file, AllowincellAttribute.type, (XmlOptions) null);
        }

        public static AllowincellAttribute parse(File file, XmlOptions xmlOptions) throws XmlException, IOException {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().parse(file, AllowincellAttribute.type, xmlOptions);
        }

        public static AllowincellAttribute parse(InputStream inputStream) throws XmlException, IOException {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().parse(inputStream, AllowincellAttribute.type, (XmlOptions) null);
        }

        public static AllowincellAttribute parse(InputStream inputStream, XmlOptions xmlOptions) throws XmlException, IOException {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().parse(inputStream, AllowincellAttribute.type, xmlOptions);
        }

        public static AllowincellAttribute parse(Reader reader) throws XmlException, IOException {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().parse(reader, AllowincellAttribute.type, (XmlOptions) null);
        }

        public static AllowincellAttribute parse(Reader reader, XmlOptions xmlOptions) throws XmlException, IOException {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().parse(reader, AllowincellAttribute.type, xmlOptions);
        }

        public static AllowincellAttribute parse(String str) throws XmlException {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().parse(str, AllowincellAttribute.type, (XmlOptions) null);
        }

        public static AllowincellAttribute parse(String str, XmlOptions xmlOptions) throws XmlException {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().parse(str, AllowincellAttribute.type, xmlOptions);
        }

        public static AllowincellAttribute parse(URL url) throws XmlException, IOException {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().parse(url, AllowincellAttribute.type, (XmlOptions) null);
        }

        public static AllowincellAttribute parse(URL url, XmlOptions xmlOptions) throws XmlException, IOException {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().parse(url, AllowincellAttribute.type, xmlOptions);
        }

        public static AllowincellAttribute parse(XMLStreamReader xMLStreamReader) throws XmlException {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().parse(xMLStreamReader, AllowincellAttribute.type, (XmlOptions) null);
        }

        public static AllowincellAttribute parse(XMLStreamReader xMLStreamReader, XmlOptions xmlOptions) throws XmlException {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().parse(xMLStreamReader, AllowincellAttribute.type, xmlOptions);
        }

        public static AllowincellAttribute parse(XMLInputStream xMLInputStream) throws XmlException, XMLStreamException {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().parse(xMLInputStream, AllowincellAttribute.type, (XmlOptions) null);
        }

        public static AllowincellAttribute parse(XMLInputStream xMLInputStream, XmlOptions xmlOptions) throws XmlException, XMLStreamException {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().parse(xMLInputStream, AllowincellAttribute.type, xmlOptions);
        }

        public static AllowincellAttribute parse(Node node) throws XmlException {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().parse(node, AllowincellAttribute.type, (XmlOptions) null);
        }

        public static AllowincellAttribute parse(Node node, XmlOptions xmlOptions) throws XmlException {
            return (AllowincellAttribute) XmlBeans.getContextTypeLoader().parse(node, AllowincellAttribute.type, xmlOptions);
        }
    }

    STTrueFalse.Enum getAllowincell();

    boolean isSetAllowincell();

    void setAllowincell(STTrueFalse.Enum r1);

    void unsetAllowincell();

    STTrueFalse xgetAllowincell();

    void xsetAllowincell(STTrueFalse sTTrueFalse);
}