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

org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType 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:  ST_ArrayBaseType
 * Namespace: http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes
 * Java type: org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType
 *
 * Automatically generated - do not modify.
 */
package org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes;


/**
 * An XML ST_ArrayBaseType(@http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes).
 *
 * This is an atomic type that is a restriction of org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType.
 */
public interface STArrayBaseType extends org.apache.xmlbeans.XmlString
{
    org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
        Factory.getTypeLoader().resolveHandle("starraybasetypee2dbtype");
    
    org.apache.xmlbeans.StringEnumAbstractBase getEnumValue();
    void setEnumValue(org.apache.xmlbeans.StringEnumAbstractBase e);
    
    static final Enum VARIANT = Enum.forString("variant");
    static final Enum I_1 = Enum.forString("i1");
    static final Enum I_2 = Enum.forString("i2");
    static final Enum I_4 = Enum.forString("i4");
    static final Enum INT = Enum.forString("int");
    static final Enum UI_1 = Enum.forString("ui1");
    static final Enum UI_2 = Enum.forString("ui2");
    static final Enum UI_4 = Enum.forString("ui4");
    static final Enum UINT = Enum.forString("uint");
    static final Enum R_4 = Enum.forString("r4");
    static final Enum R_8 = Enum.forString("r8");
    static final Enum DECIMAL = Enum.forString("decimal");
    static final Enum BSTR = Enum.forString("bstr");
    static final Enum DATE = Enum.forString("date");
    static final Enum BOOL = Enum.forString("bool");
    static final Enum CY = Enum.forString("cy");
    static final Enum ERROR = Enum.forString("error");
    
    static final int INT_VARIANT = Enum.INT_VARIANT;
    static final int INT_I_1 = Enum.INT_I_1;
    static final int INT_I_2 = Enum.INT_I_2;
    static final int INT_I_4 = Enum.INT_I_4;
    static final int INT_INT = Enum.INT_INT;
    static final int INT_UI_1 = Enum.INT_UI_1;
    static final int INT_UI_2 = Enum.INT_UI_2;
    static final int INT_UI_4 = Enum.INT_UI_4;
    static final int INT_UINT = Enum.INT_UINT;
    static final int INT_R_4 = Enum.INT_R_4;
    static final int INT_R_8 = Enum.INT_R_8;
    static final int INT_DECIMAL = Enum.INT_DECIMAL;
    static final int INT_BSTR = Enum.INT_BSTR;
    static final int INT_DATE = Enum.INT_DATE;
    static final int INT_BOOL = Enum.INT_BOOL;
    static final int INT_CY = Enum.INT_CY;
    static final int INT_ERROR = Enum.INT_ERROR;
    
    /**
     * Enumeration value class for org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType.
     * These enum values can be used as follows:
     * 
     * enum.toString(); // returns the string value of the enum
     * enum.intValue(); // returns an int value, useful for switches
     * // e.g., case Enum.INT_VARIANT
     * Enum.forString(s); // returns the enum value for a string
     * Enum.forInt(i); // returns the enum value for an int
     * 
* Enumeration objects are immutable singleton objects that * can be compared using == object equality. They have no * public constructor. See the constants defined within this * class for all the valid values. */ static final class Enum extends org.apache.xmlbeans.StringEnumAbstractBase { /** * Returns the enum value for a string, or null if none. */ public static Enum forString(java.lang.String s) { return (Enum)table.forString(s); } /** * Returns the enum value corresponding to an int, or null if none. */ public static Enum forInt(int i) { return (Enum)table.forInt(i); } private Enum(java.lang.String s, int i) { super(s, i); } static final int INT_VARIANT = 1; static final int INT_I_1 = 2; static final int INT_I_2 = 3; static final int INT_I_4 = 4; static final int INT_INT = 5; static final int INT_UI_1 = 6; static final int INT_UI_2 = 7; static final int INT_UI_4 = 8; static final int INT_UINT = 9; static final int INT_R_4 = 10; static final int INT_R_8 = 11; static final int INT_DECIMAL = 12; static final int INT_BSTR = 13; static final int INT_DATE = 14; static final int INT_BOOL = 15; static final int INT_CY = 16; static final int INT_ERROR = 17; public static final org.apache.xmlbeans.StringEnumAbstractBase.Table table = new org.apache.xmlbeans.StringEnumAbstractBase.Table ( new Enum[] { new Enum("variant", INT_VARIANT), new Enum("i1", INT_I_1), new Enum("i2", INT_I_2), new Enum("i4", INT_I_4), new Enum("int", INT_INT), new Enum("ui1", INT_UI_1), new Enum("ui2", INT_UI_2), new Enum("ui4", INT_UI_4), new Enum("uint", INT_UINT), new Enum("r4", INT_R_4), new Enum("r8", INT_R_8), new Enum("decimal", INT_DECIMAL), new Enum("bstr", INT_BSTR), new Enum("date", INT_DATE), new Enum("bool", INT_BOOL), new Enum("cy", INT_CY), new Enum("error", INT_ERROR), } ); private static final long serialVersionUID = 1L; private java.lang.Object readResolve() { return forInt(intValue()); } } /** * 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 org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType newValue(java.lang.Object obj) { return (org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType) type.newValue( obj ); } public static org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType newInstance() { return (org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType) getTypeLoader().newInstance( type, null ); } public static org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType) getTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType) getTypeLoader().parse( xmlAsString, type, null ); } public static org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType) getTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType) getTypeLoader().parse( file, type, null ); } public static org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType) getTypeLoader().parse( file, type, options ); } public static org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType) getTypeLoader().parse( u, type, null ); } public static org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType) getTypeLoader().parse( u, type, options ); } public static org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType) getTypeLoader().parse( is, type, null ); } public static org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType) getTypeLoader().parse( is, type, options ); } public static org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType) getTypeLoader().parse( r, type, null ); } public static org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType) getTypeLoader().parse( r, type, options ); } public static org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType) getTypeLoader().parse( sr, type, null ); } public static org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType) getTypeLoader().parse( sr, type, options ); } public static org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType) getTypeLoader().parse( node, type, null ); } public static org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes.STArrayBaseType) getTypeLoader().parse( node, type, options ); } private Factory() { } // No instance of this class allowed } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy