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

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


/**
 * An XML ST_DynamicFilterType(@http://schemas.openxmlformats.org/spreadsheetml/2006/main).
 *
 * This is an atomic type that is a restriction of org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType.
 */
public interface STDynamicFilterType extends org.apache.xmlbeans.XmlString
{
    org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
        Factory.getTypeLoader().resolveHandle("stdynamicfiltertypebbc0type");
    
    org.apache.xmlbeans.StringEnumAbstractBase getEnumValue();
    void setEnumValue(org.apache.xmlbeans.StringEnumAbstractBase e);
    
    static final Enum NULL = Enum.forString("null");
    static final Enum ABOVE_AVERAGE = Enum.forString("aboveAverage");
    static final Enum BELOW_AVERAGE = Enum.forString("belowAverage");
    static final Enum TOMORROW = Enum.forString("tomorrow");
    static final Enum TODAY = Enum.forString("today");
    static final Enum YESTERDAY = Enum.forString("yesterday");
    static final Enum NEXT_WEEK = Enum.forString("nextWeek");
    static final Enum THIS_WEEK = Enum.forString("thisWeek");
    static final Enum LAST_WEEK = Enum.forString("lastWeek");
    static final Enum NEXT_MONTH = Enum.forString("nextMonth");
    static final Enum THIS_MONTH = Enum.forString("thisMonth");
    static final Enum LAST_MONTH = Enum.forString("lastMonth");
    static final Enum NEXT_QUARTER = Enum.forString("nextQuarter");
    static final Enum THIS_QUARTER = Enum.forString("thisQuarter");
    static final Enum LAST_QUARTER = Enum.forString("lastQuarter");
    static final Enum NEXT_YEAR = Enum.forString("nextYear");
    static final Enum THIS_YEAR = Enum.forString("thisYear");
    static final Enum LAST_YEAR = Enum.forString("lastYear");
    static final Enum YEAR_TO_DATE = Enum.forString("yearToDate");
    static final Enum Q_1 = Enum.forString("Q1");
    static final Enum Q_2 = Enum.forString("Q2");
    static final Enum Q_3 = Enum.forString("Q3");
    static final Enum Q_4 = Enum.forString("Q4");
    static final Enum M_1 = Enum.forString("M1");
    static final Enum M_2 = Enum.forString("M2");
    static final Enum M_3 = Enum.forString("M3");
    static final Enum M_4 = Enum.forString("M4");
    static final Enum M_5 = Enum.forString("M5");
    static final Enum M_6 = Enum.forString("M6");
    static final Enum M_7 = Enum.forString("M7");
    static final Enum M_8 = Enum.forString("M8");
    static final Enum M_9 = Enum.forString("M9");
    static final Enum M_10 = Enum.forString("M10");
    static final Enum M_11 = Enum.forString("M11");
    static final Enum M_12 = Enum.forString("M12");
    
    static final int INT_NULL = Enum.INT_NULL;
    static final int INT_ABOVE_AVERAGE = Enum.INT_ABOVE_AVERAGE;
    static final int INT_BELOW_AVERAGE = Enum.INT_BELOW_AVERAGE;
    static final int INT_TOMORROW = Enum.INT_TOMORROW;
    static final int INT_TODAY = Enum.INT_TODAY;
    static final int INT_YESTERDAY = Enum.INT_YESTERDAY;
    static final int INT_NEXT_WEEK = Enum.INT_NEXT_WEEK;
    static final int INT_THIS_WEEK = Enum.INT_THIS_WEEK;
    static final int INT_LAST_WEEK = Enum.INT_LAST_WEEK;
    static final int INT_NEXT_MONTH = Enum.INT_NEXT_MONTH;
    static final int INT_THIS_MONTH = Enum.INT_THIS_MONTH;
    static final int INT_LAST_MONTH = Enum.INT_LAST_MONTH;
    static final int INT_NEXT_QUARTER = Enum.INT_NEXT_QUARTER;
    static final int INT_THIS_QUARTER = Enum.INT_THIS_QUARTER;
    static final int INT_LAST_QUARTER = Enum.INT_LAST_QUARTER;
    static final int INT_NEXT_YEAR = Enum.INT_NEXT_YEAR;
    static final int INT_THIS_YEAR = Enum.INT_THIS_YEAR;
    static final int INT_LAST_YEAR = Enum.INT_LAST_YEAR;
    static final int INT_YEAR_TO_DATE = Enum.INT_YEAR_TO_DATE;
    static final int INT_Q_1 = Enum.INT_Q_1;
    static final int INT_Q_2 = Enum.INT_Q_2;
    static final int INT_Q_3 = Enum.INT_Q_3;
    static final int INT_Q_4 = Enum.INT_Q_4;
    static final int INT_M_1 = Enum.INT_M_1;
    static final int INT_M_2 = Enum.INT_M_2;
    static final int INT_M_3 = Enum.INT_M_3;
    static final int INT_M_4 = Enum.INT_M_4;
    static final int INT_M_5 = Enum.INT_M_5;
    static final int INT_M_6 = Enum.INT_M_6;
    static final int INT_M_7 = Enum.INT_M_7;
    static final int INT_M_8 = Enum.INT_M_8;
    static final int INT_M_9 = Enum.INT_M_9;
    static final int INT_M_10 = Enum.INT_M_10;
    static final int INT_M_11 = Enum.INT_M_11;
    static final int INT_M_12 = Enum.INT_M_12;
    
    /**
     * Enumeration value class for org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType.
     * 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_NULL
     * 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_NULL = 1; static final int INT_ABOVE_AVERAGE = 2; static final int INT_BELOW_AVERAGE = 3; static final int INT_TOMORROW = 4; static final int INT_TODAY = 5; static final int INT_YESTERDAY = 6; static final int INT_NEXT_WEEK = 7; static final int INT_THIS_WEEK = 8; static final int INT_LAST_WEEK = 9; static final int INT_NEXT_MONTH = 10; static final int INT_THIS_MONTH = 11; static final int INT_LAST_MONTH = 12; static final int INT_NEXT_QUARTER = 13; static final int INT_THIS_QUARTER = 14; static final int INT_LAST_QUARTER = 15; static final int INT_NEXT_YEAR = 16; static final int INT_THIS_YEAR = 17; static final int INT_LAST_YEAR = 18; static final int INT_YEAR_TO_DATE = 19; static final int INT_Q_1 = 20; static final int INT_Q_2 = 21; static final int INT_Q_3 = 22; static final int INT_Q_4 = 23; static final int INT_M_1 = 24; static final int INT_M_2 = 25; static final int INT_M_3 = 26; static final int INT_M_4 = 27; static final int INT_M_5 = 28; static final int INT_M_6 = 29; static final int INT_M_7 = 30; static final int INT_M_8 = 31; static final int INT_M_9 = 32; static final int INT_M_10 = 33; static final int INT_M_11 = 34; static final int INT_M_12 = 35; public static final org.apache.xmlbeans.StringEnumAbstractBase.Table table = new org.apache.xmlbeans.StringEnumAbstractBase.Table ( new Enum[] { new Enum("null", INT_NULL), new Enum("aboveAverage", INT_ABOVE_AVERAGE), new Enum("belowAverage", INT_BELOW_AVERAGE), new Enum("tomorrow", INT_TOMORROW), new Enum("today", INT_TODAY), new Enum("yesterday", INT_YESTERDAY), new Enum("nextWeek", INT_NEXT_WEEK), new Enum("thisWeek", INT_THIS_WEEK), new Enum("lastWeek", INT_LAST_WEEK), new Enum("nextMonth", INT_NEXT_MONTH), new Enum("thisMonth", INT_THIS_MONTH), new Enum("lastMonth", INT_LAST_MONTH), new Enum("nextQuarter", INT_NEXT_QUARTER), new Enum("thisQuarter", INT_THIS_QUARTER), new Enum("lastQuarter", INT_LAST_QUARTER), new Enum("nextYear", INT_NEXT_YEAR), new Enum("thisYear", INT_THIS_YEAR), new Enum("lastYear", INT_LAST_YEAR), new Enum("yearToDate", INT_YEAR_TO_DATE), new Enum("Q1", INT_Q_1), new Enum("Q2", INT_Q_2), new Enum("Q3", INT_Q_3), new Enum("Q4", INT_Q_4), new Enum("M1", INT_M_1), new Enum("M2", INT_M_2), new Enum("M3", INT_M_3), new Enum("M4", INT_M_4), new Enum("M5", INT_M_5), new Enum("M6", INT_M_6), new Enum("M7", INT_M_7), new Enum("M8", INT_M_8), new Enum("M9", INT_M_9), new Enum("M10", INT_M_10), new Enum("M11", INT_M_11), new Enum("M12", INT_M_12), } ); 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.spreadsheetml.x2006.main.STDynamicFilterType newValue(java.lang.Object obj) { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType) type.newValue( obj ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType newInstance() { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType) getTypeLoader().newInstance( type, null ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType) getTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType) getTypeLoader().parse( xmlAsString, type, null ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType) getTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType) getTypeLoader().parse( file, type, null ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType 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.STDynamicFilterType) getTypeLoader().parse( file, type, options ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType) getTypeLoader().parse( u, type, null ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType 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.STDynamicFilterType) getTypeLoader().parse( u, type, options ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType) getTypeLoader().parse( is, type, null ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType 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.STDynamicFilterType) getTypeLoader().parse( is, type, options ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType) getTypeLoader().parse( r, type, null ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType 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.STDynamicFilterType) getTypeLoader().parse( r, type, options ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType) getTypeLoader().parse( sr, type, null ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType) getTypeLoader().parse( sr, type, options ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType) getTypeLoader().parse( node, type, null ); } public static org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.openxmlformats.schemas.spreadsheetml.x2006.main.STDynamicFilterType) getTypeLoader().parse( node, type, options ); } private Factory() { } // No instance of this class allowed } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy