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

org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType 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:  ST_CfType
 * Namespace: http://schemas.openxmlformats.org/spreadsheetml/2006/main
 * Java type: org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType
 *
 * Automatically generated - do not modify.
 */
package org.openxmlformats.schemas.spreadsheetml.x2006.main;


/**
 * An XML ST_CfType(@http://schemas.openxmlformats.org/spreadsheetml/2006/main).
 *
 * This is an atomic type that is a restriction of org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType.
 */
public interface STCfType extends org.apache.xmlbeans.XmlString
{
    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
        org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STCfType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("stcftype8016type");
    
    org.apache.xmlbeans.StringEnumAbstractBase enumValue();
    void set(org.apache.xmlbeans.StringEnumAbstractBase e);
    
    static final Enum EXPRESSION = Enum.forString("expression");
    static final Enum CELL_IS = Enum.forString("cellIs");
    static final Enum COLOR_SCALE = Enum.forString("colorScale");
    static final Enum DATA_BAR = Enum.forString("dataBar");
    static final Enum ICON_SET = Enum.forString("iconSet");
    static final Enum TOP_10 = Enum.forString("top10");
    static final Enum UNIQUE_VALUES = Enum.forString("uniqueValues");
    static final Enum DUPLICATE_VALUES = Enum.forString("duplicateValues");
    static final Enum CONTAINS_TEXT = Enum.forString("containsText");
    static final Enum NOT_CONTAINS_TEXT = Enum.forString("notContainsText");
    static final Enum BEGINS_WITH = Enum.forString("beginsWith");
    static final Enum ENDS_WITH = Enum.forString("endsWith");
    static final Enum CONTAINS_BLANKS = Enum.forString("containsBlanks");
    static final Enum NOT_CONTAINS_BLANKS = Enum.forString("notContainsBlanks");
    static final Enum CONTAINS_ERRORS = Enum.forString("containsErrors");
    static final Enum NOT_CONTAINS_ERRORS = Enum.forString("notContainsErrors");
    static final Enum TIME_PERIOD = Enum.forString("timePeriod");
    static final Enum ABOVE_AVERAGE = Enum.forString("aboveAverage");
    
    static final int INT_EXPRESSION = Enum.INT_EXPRESSION;
    static final int INT_CELL_IS = Enum.INT_CELL_IS;
    static final int INT_COLOR_SCALE = Enum.INT_COLOR_SCALE;
    static final int INT_DATA_BAR = Enum.INT_DATA_BAR;
    static final int INT_ICON_SET = Enum.INT_ICON_SET;
    static final int INT_TOP_10 = Enum.INT_TOP_10;
    static final int INT_UNIQUE_VALUES = Enum.INT_UNIQUE_VALUES;
    static final int INT_DUPLICATE_VALUES = Enum.INT_DUPLICATE_VALUES;
    static final int INT_CONTAINS_TEXT = Enum.INT_CONTAINS_TEXT;
    static final int INT_NOT_CONTAINS_TEXT = Enum.INT_NOT_CONTAINS_TEXT;
    static final int INT_BEGINS_WITH = Enum.INT_BEGINS_WITH;
    static final int INT_ENDS_WITH = Enum.INT_ENDS_WITH;
    static final int INT_CONTAINS_BLANKS = Enum.INT_CONTAINS_BLANKS;
    static final int INT_NOT_CONTAINS_BLANKS = Enum.INT_NOT_CONTAINS_BLANKS;
    static final int INT_CONTAINS_ERRORS = Enum.INT_CONTAINS_ERRORS;
    static final int INT_NOT_CONTAINS_ERRORS = Enum.INT_NOT_CONTAINS_ERRORS;
    static final int INT_TIME_PERIOD = Enum.INT_TIME_PERIOD;
    static final int INT_ABOVE_AVERAGE = Enum.INT_ABOVE_AVERAGE;
    
    /**
     * Enumeration value class for org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType.
     * 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_EXPRESSION
     * 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_EXPRESSION = 1; static final int INT_CELL_IS = 2; static final int INT_COLOR_SCALE = 3; static final int INT_DATA_BAR = 4; static final int INT_ICON_SET = 5; static final int INT_TOP_10 = 6; static final int INT_UNIQUE_VALUES = 7; static final int INT_DUPLICATE_VALUES = 8; static final int INT_CONTAINS_TEXT = 9; static final int INT_NOT_CONTAINS_TEXT = 10; static final int INT_BEGINS_WITH = 11; static final int INT_ENDS_WITH = 12; static final int INT_CONTAINS_BLANKS = 13; static final int INT_NOT_CONTAINS_BLANKS = 14; static final int INT_CONTAINS_ERRORS = 15; static final int INT_NOT_CONTAINS_ERRORS = 16; static final int INT_TIME_PERIOD = 17; static final int INT_ABOVE_AVERAGE = 18; public static final org.apache.xmlbeans.StringEnumAbstractBase.Table table = new org.apache.xmlbeans.StringEnumAbstractBase.Table ( new Enum[] { new Enum("expression", INT_EXPRESSION), new Enum("cellIs", INT_CELL_IS), new Enum("colorScale", INT_COLOR_SCALE), new Enum("dataBar", INT_DATA_BAR), new Enum("iconSet", INT_ICON_SET), new Enum("top10", INT_TOP_10), new Enum("uniqueValues", INT_UNIQUE_VALUES), new Enum("duplicateValues", INT_DUPLICATE_VALUES), new Enum("containsText", INT_CONTAINS_TEXT), new Enum("notContainsText", INT_NOT_CONTAINS_TEXT), new Enum("beginsWith", INT_BEGINS_WITH), new Enum("endsWith", INT_ENDS_WITH), new Enum("containsBlanks", INT_CONTAINS_BLANKS), new Enum("notContainsBlanks", INT_NOT_CONTAINS_BLANKS), new Enum("containsErrors", INT_CONTAINS_ERRORS), new Enum("notContainsErrors", INT_NOT_CONTAINS_ERRORS), new Enum("timePeriod", INT_TIME_PERIOD), new Enum("aboveAverage", INT_ABOVE_AVERAGE), } ); 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. */ public static final class Factory { public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType newValue(java.lang.Object obj) { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) type.newValue( obj ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType newInstance() { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType 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 (org.openxmlformats.schemas.spreadsheetml.x2006.main.STCfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().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.xmlbeans.XmlBeans.getContextTypeLoader().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.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy