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

net.opengis.sos.x10.GetObservationDocument Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
/*
 * An XML document type.
 * Localname: GetObservation
 * Namespace: http://www.opengis.net/sos/1.0
 * Java type: net.opengis.sos.x10.GetObservationDocument
 *
 * Automatically generated - do not modify.
 */
package net.opengis.sos.x10;


/**
 * A document containing one GetObservation(@http://www.opengis.net/sos/1.0) element.
 *
 * This is a complex type.
 */
public interface GetObservationDocument extends org.apache.xmlbeans.XmlObject
{
    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
        org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(GetObservationDocument.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s10AF7FD2A8F04E8111EC741B860FB1D5").resolveHandle("getobservation6e0adoctype");
    
    /**
     * Gets the "GetObservation" element
     */
    net.opengis.sos.x10.GetObservationDocument.GetObservation getGetObservation();
    
    /**
     * Sets the "GetObservation" element
     */
    void setGetObservation(net.opengis.sos.x10.GetObservationDocument.GetObservation getObservation);
    
    /**
     * Appends and returns a new empty "GetObservation" element
     */
    net.opengis.sos.x10.GetObservationDocument.GetObservation addNewGetObservation();
    
    /**
     * An XML GetObservation(@http://www.opengis.net/sos/1.0).
     *
     * This is a complex type.
     */
    public interface GetObservation extends net.opengis.sos.x10.RequestBaseType
    {
        public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
            org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(GetObservation.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s10AF7FD2A8F04E8111EC741B860FB1D5").resolveHandle("getobservation8bbcelemtype");
        
        /**
         * Gets the "offering" element
         */
        java.lang.String getOffering();
        
        /**
         * Gets (as xml) the "offering" element
         */
        org.apache.xmlbeans.XmlAnyURI xgetOffering();
        
        /**
         * True if has "offering" element
         */
        boolean isSetOffering();
        
        /**
         * Sets the "offering" element
         */
        void setOffering(java.lang.String offering);
        
        /**
         * Sets (as xml) the "offering" element
         */
        void xsetOffering(org.apache.xmlbeans.XmlAnyURI offering);
        
        /**
         * Unsets the "offering" element
         */
        void unsetOffering();
        
        /**
         * Gets array of all "eventTime" elements
         */
        net.opengis.sos.x10.GetObservationDocument.GetObservation.EventTime[] getEventTimeArray();
        
        /**
         * Gets ith "eventTime" element
         */
        net.opengis.sos.x10.GetObservationDocument.GetObservation.EventTime getEventTimeArray(int i);
        
        /**
         * Returns number of "eventTime" element
         */
        int sizeOfEventTimeArray();
        
        /**
         * Sets array of all "eventTime" element
         */
        void setEventTimeArray(net.opengis.sos.x10.GetObservationDocument.GetObservation.EventTime[] eventTimeArray);
        
        /**
         * Sets ith "eventTime" element
         */
        void setEventTimeArray(int i, net.opengis.sos.x10.GetObservationDocument.GetObservation.EventTime eventTime);
        
        /**
         * Inserts and returns a new empty value (as xml) as the ith "eventTime" element
         */
        net.opengis.sos.x10.GetObservationDocument.GetObservation.EventTime insertNewEventTime(int i);
        
        /**
         * Appends and returns a new empty value (as xml) as the last "eventTime" element
         */
        net.opengis.sos.x10.GetObservationDocument.GetObservation.EventTime addNewEventTime();
        
        /**
         * Removes the ith "eventTime" element
         */
        void removeEventTime(int i);
        
        /**
         * Gets array of all "procedure" elements
         */
        java.lang.String[] getProcedureArray();
        
        /**
         * Gets ith "procedure" element
         */
        java.lang.String getProcedureArray(int i);
        
        /**
         * Gets (as xml) array of all "procedure" elements
         */
        org.apache.xmlbeans.XmlAnyURI[] xgetProcedureArray();
        
        /**
         * Gets (as xml) ith "procedure" element
         */
        org.apache.xmlbeans.XmlAnyURI xgetProcedureArray(int i);
        
        /**
         * Returns number of "procedure" element
         */
        int sizeOfProcedureArray();
        
        /**
         * Sets array of all "procedure" element
         */
        void setProcedureArray(java.lang.String[] procedureArray);
        
        /**
         * Sets ith "procedure" element
         */
        void setProcedureArray(int i, java.lang.String procedure);
        
        /**
         * Sets (as xml) array of all "procedure" element
         */
        void xsetProcedureArray(org.apache.xmlbeans.XmlAnyURI[] procedureArray);
        
        /**
         * Sets (as xml) ith "procedure" element
         */
        void xsetProcedureArray(int i, org.apache.xmlbeans.XmlAnyURI procedure);
        
        /**
         * Inserts the value as the ith "procedure" element
         */
        void insertProcedure(int i, java.lang.String procedure);
        
        /**
         * Appends the value as the last "procedure" element
         */
        void addProcedure(java.lang.String procedure);
        
        /**
         * Inserts and returns a new empty value (as xml) as the ith "procedure" element
         */
        org.apache.xmlbeans.XmlAnyURI insertNewProcedure(int i);
        
        /**
         * Appends and returns a new empty value (as xml) as the last "procedure" element
         */
        org.apache.xmlbeans.XmlAnyURI addNewProcedure();
        
        /**
         * Removes the ith "procedure" element
         */
        void removeProcedure(int i);
        
        /**
         * Gets array of all "observedProperty" elements
         */
        java.lang.String[] getObservedPropertyArray();
        
        /**
         * Gets ith "observedProperty" element
         */
        java.lang.String getObservedPropertyArray(int i);
        
        /**
         * Gets (as xml) array of all "observedProperty" elements
         */
        org.apache.xmlbeans.XmlAnyURI[] xgetObservedPropertyArray();
        
        /**
         * Gets (as xml) ith "observedProperty" element
         */
        org.apache.xmlbeans.XmlAnyURI xgetObservedPropertyArray(int i);
        
        /**
         * Returns number of "observedProperty" element
         */
        int sizeOfObservedPropertyArray();
        
        /**
         * Sets array of all "observedProperty" element
         */
        void setObservedPropertyArray(java.lang.String[] observedPropertyArray);
        
        /**
         * Sets ith "observedProperty" element
         */
        void setObservedPropertyArray(int i, java.lang.String observedProperty);
        
        /**
         * Sets (as xml) array of all "observedProperty" element
         */
        void xsetObservedPropertyArray(org.apache.xmlbeans.XmlAnyURI[] observedPropertyArray);
        
        /**
         * Sets (as xml) ith "observedProperty" element
         */
        void xsetObservedPropertyArray(int i, org.apache.xmlbeans.XmlAnyURI observedProperty);
        
        /**
         * Inserts the value as the ith "observedProperty" element
         */
        void insertObservedProperty(int i, java.lang.String observedProperty);
        
        /**
         * Appends the value as the last "observedProperty" element
         */
        void addObservedProperty(java.lang.String observedProperty);
        
        /**
         * Inserts and returns a new empty value (as xml) as the ith "observedProperty" element
         */
        org.apache.xmlbeans.XmlAnyURI insertNewObservedProperty(int i);
        
        /**
         * Appends and returns a new empty value (as xml) as the last "observedProperty" element
         */
        org.apache.xmlbeans.XmlAnyURI addNewObservedProperty();
        
        /**
         * Removes the ith "observedProperty" element
         */
        void removeObservedProperty(int i);
        
        /**
         * Gets the "featureOfInterest" element
         */
        net.opengis.sos.x10.GetObservationDocument.GetObservation.FeatureOfInterest getFeatureOfInterest();
        
        /**
         * True if has "featureOfInterest" element
         */
        boolean isSetFeatureOfInterest();
        
        /**
         * Sets the "featureOfInterest" element
         */
        void setFeatureOfInterest(net.opengis.sos.x10.GetObservationDocument.GetObservation.FeatureOfInterest featureOfInterest);
        
        /**
         * Appends and returns a new empty "featureOfInterest" element
         */
        net.opengis.sos.x10.GetObservationDocument.GetObservation.FeatureOfInterest addNewFeatureOfInterest();
        
        /**
         * Unsets the "featureOfInterest" element
         */
        void unsetFeatureOfInterest();
        
        /**
         * Gets the "result" element
         */
        net.opengis.sos.x10.GetObservationDocument.GetObservation.Result getResult();
        
        /**
         * True if has "result" element
         */
        boolean isSetResult();
        
        /**
         * Sets the "result" element
         */
        void setResult(net.opengis.sos.x10.GetObservationDocument.GetObservation.Result result);
        
        /**
         * Appends and returns a new empty "result" element
         */
        net.opengis.sos.x10.GetObservationDocument.GetObservation.Result addNewResult();
        
        /**
         * Unsets the "result" element
         */
        void unsetResult();
        
        /**
         * Gets the "responseFormat" element
         */
        java.lang.String getResponseFormat();
        
        /**
         * Gets (as xml) the "responseFormat" element
         */
        net.opengis.ows.x11.MimeType xgetResponseFormat();
        
        /**
         * True if has "responseFormat" element
         */
        boolean isSetResponseFormat();
        
        /**
         * Sets the "responseFormat" element
         */
        void setResponseFormat(java.lang.String responseFormat);
        
        /**
         * Sets (as xml) the "responseFormat" element
         */
        void xsetResponseFormat(net.opengis.ows.x11.MimeType responseFormat);
        
        /**
         * Unsets the "responseFormat" element
         */
        void unsetResponseFormat();
        
        /**
         * Gets the "resultModel" element
         */
        javax.xml.namespace.QName getResultModel();
        
        /**
         * Gets (as xml) the "resultModel" element
         */
        org.apache.xmlbeans.XmlQName xgetResultModel();
        
        /**
         * True if has "resultModel" element
         */
        boolean isSetResultModel();
        
        /**
         * Sets the "resultModel" element
         */
        void setResultModel(javax.xml.namespace.QName resultModel);
        
        /**
         * Sets (as xml) the "resultModel" element
         */
        void xsetResultModel(org.apache.xmlbeans.XmlQName resultModel);
        
        /**
         * Unsets the "resultModel" element
         */
        void unsetResultModel();
        
        /**
         * Gets the "responseMode" element
         */
        net.opengis.sos.x10.ResponseModeType.Enum getResponseMode();
        
        /**
         * Gets (as xml) the "responseMode" element
         */
        net.opengis.sos.x10.ResponseModeType xgetResponseMode();
        
        /**
         * True if has "responseMode" element
         */
        boolean isSetResponseMode();
        
        /**
         * Sets the "responseMode" element
         */
        void setResponseMode(net.opengis.sos.x10.ResponseModeType.Enum responseMode);
        
        /**
         * Sets (as xml) the "responseMode" element
         */
        void xsetResponseMode(net.opengis.sos.x10.ResponseModeType responseMode);
        
        /**
         * Unsets the "responseMode" element
         */
        void unsetResponseMode();
        
        /**
         * Gets the "srsName" attribute
         */
        java.lang.String getSrsName();
        
        /**
         * Gets (as xml) the "srsName" attribute
         */
        org.apache.xmlbeans.XmlAnyURI xgetSrsName();
        
        /**
         * True if has "srsName" attribute
         */
        boolean isSetSrsName();
        
        /**
         * Sets the "srsName" attribute
         */
        void setSrsName(java.lang.String srsName);
        
        /**
         * Sets (as xml) the "srsName" attribute
         */
        void xsetSrsName(org.apache.xmlbeans.XmlAnyURI srsName);
        
        /**
         * Unsets the "srsName" attribute
         */
        void unsetSrsName();
        
        /**
         * An XML eventTime(@http://www.opengis.net/sos/1.0).
         *
         * This is a complex type.
         */
        public interface EventTime extends org.apache.xmlbeans.XmlObject
        {
            public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
                org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(EventTime.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s10AF7FD2A8F04E8111EC741B860FB1D5").resolveHandle("eventtime0329elemtype");
            
            /**
             * Gets the "temporalOps" element
             */
            net.opengis.ogc.TemporalOpsType getTemporalOps();
            
            /**
             * Sets the "temporalOps" element
             */
            void setTemporalOps(net.opengis.ogc.TemporalOpsType temporalOps);
            
            /**
             * Appends and returns a new empty "temporalOps" element
             */
            net.opengis.ogc.TemporalOpsType addNewTemporalOps();
            
            /**
             * A factory class with static methods for creating instances
             * of this type.
             */
            
            public static final class Factory
            {
                public static net.opengis.sos.x10.GetObservationDocument.GetObservation.EventTime newInstance() {
                  return (net.opengis.sos.x10.GetObservationDocument.GetObservation.EventTime) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
                
                public static net.opengis.sos.x10.GetObservationDocument.GetObservation.EventTime newInstance(org.apache.xmlbeans.XmlOptions options) {
                  return (net.opengis.sos.x10.GetObservationDocument.GetObservation.EventTime) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
                
                private Factory() { } // No instance of this class allowed
            }
        }
        
        /**
         * An XML featureOfInterest(@http://www.opengis.net/sos/1.0).
         *
         * This is a complex type.
         */
        public interface FeatureOfInterest extends org.apache.xmlbeans.XmlObject
        {
            public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
                org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(FeatureOfInterest.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s10AF7FD2A8F04E8111EC741B860FB1D5").resolveHandle("featureofinterestfff9elemtype");
            
            /**
             * Gets the "spatialOps" element
             */
            net.opengis.ogc.SpatialOpsType getSpatialOps();
            
            /**
             * True if has "spatialOps" element
             */
            boolean isSetSpatialOps();
            
            /**
             * Sets the "spatialOps" element
             */
            void setSpatialOps(net.opengis.ogc.SpatialOpsType spatialOps);
            
            /**
             * Appends and returns a new empty "spatialOps" element
             */
            net.opengis.ogc.SpatialOpsType addNewSpatialOps();
            
            /**
             * Unsets the "spatialOps" element
             */
            void unsetSpatialOps();
            
            /**
             * Gets array of all "ObjectID" elements
             */
            java.lang.String[] getObjectIDArray();
            
            /**
             * Gets ith "ObjectID" element
             */
            java.lang.String getObjectIDArray(int i);
            
            /**
             * Gets (as xml) array of all "ObjectID" elements
             */
            org.apache.xmlbeans.XmlAnyURI[] xgetObjectIDArray();
            
            /**
             * Gets (as xml) ith "ObjectID" element
             */
            org.apache.xmlbeans.XmlAnyURI xgetObjectIDArray(int i);
            
            /**
             * Returns number of "ObjectID" element
             */
            int sizeOfObjectIDArray();
            
            /**
             * Sets array of all "ObjectID" element
             */
            void setObjectIDArray(java.lang.String[] objectIDArray);
            
            /**
             * Sets ith "ObjectID" element
             */
            void setObjectIDArray(int i, java.lang.String objectID);
            
            /**
             * Sets (as xml) array of all "ObjectID" element
             */
            void xsetObjectIDArray(org.apache.xmlbeans.XmlAnyURI[] objectIDArray);
            
            /**
             * Sets (as xml) ith "ObjectID" element
             */
            void xsetObjectIDArray(int i, org.apache.xmlbeans.XmlAnyURI objectID);
            
            /**
             * Inserts the value as the ith "ObjectID" element
             */
            void insertObjectID(int i, java.lang.String objectID);
            
            /**
             * Appends the value as the last "ObjectID" element
             */
            void addObjectID(java.lang.String objectID);
            
            /**
             * Inserts and returns a new empty value (as xml) as the ith "ObjectID" element
             */
            org.apache.xmlbeans.XmlAnyURI insertNewObjectID(int i);
            
            /**
             * Appends and returns a new empty value (as xml) as the last "ObjectID" element
             */
            org.apache.xmlbeans.XmlAnyURI addNewObjectID();
            
            /**
             * Removes the ith "ObjectID" element
             */
            void removeObjectID(int i);
            
            /**
             * A factory class with static methods for creating instances
             * of this type.
             */
            
            public static final class Factory
            {
                public static net.opengis.sos.x10.GetObservationDocument.GetObservation.FeatureOfInterest newInstance() {
                  return (net.opengis.sos.x10.GetObservationDocument.GetObservation.FeatureOfInterest) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
                
                public static net.opengis.sos.x10.GetObservationDocument.GetObservation.FeatureOfInterest newInstance(org.apache.xmlbeans.XmlOptions options) {
                  return (net.opengis.sos.x10.GetObservationDocument.GetObservation.FeatureOfInterest) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
                
                private Factory() { } // No instance of this class allowed
            }
        }
        
        /**
         * An XML result(@http://www.opengis.net/sos/1.0).
         *
         * This is a complex type.
         */
        public interface Result extends org.apache.xmlbeans.XmlObject
        {
            public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
                org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(Result.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s10AF7FD2A8F04E8111EC741B860FB1D5").resolveHandle("resultac23elemtype");
            
            /**
             * Gets the "comparisonOps" element
             */
            net.opengis.ogc.ComparisonOpsType getComparisonOps();
            
            /**
             * Sets the "comparisonOps" element
             */
            void setComparisonOps(net.opengis.ogc.ComparisonOpsType comparisonOps);
            
            /**
             * Appends and returns a new empty "comparisonOps" element
             */
            net.opengis.ogc.ComparisonOpsType addNewComparisonOps();
            
            /**
             * A factory class with static methods for creating instances
             * of this type.
             */
            
            public static final class Factory
            {
                public static net.opengis.sos.x10.GetObservationDocument.GetObservation.Result newInstance() {
                  return (net.opengis.sos.x10.GetObservationDocument.GetObservation.Result) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
                
                public static net.opengis.sos.x10.GetObservationDocument.GetObservation.Result newInstance(org.apache.xmlbeans.XmlOptions options) {
                  return (net.opengis.sos.x10.GetObservationDocument.GetObservation.Result) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
                
                private Factory() { } // No instance of this class allowed
            }
        }
        
        /**
         * A factory class with static methods for creating instances
         * of this type.
         */
        
        public static final class Factory
        {
            public static net.opengis.sos.x10.GetObservationDocument.GetObservation newInstance() {
              return (net.opengis.sos.x10.GetObservationDocument.GetObservation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
            
            public static net.opengis.sos.x10.GetObservationDocument.GetObservation newInstance(org.apache.xmlbeans.XmlOptions options) {
              return (net.opengis.sos.x10.GetObservationDocument.GetObservation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
            
            private Factory() { } // No instance of this class allowed
        }
    }
    
    /**
     * A factory class with static methods for creating instances
     * of this type.
     */
    
    public static final class Factory
    {
        public static net.opengis.sos.x10.GetObservationDocument newInstance() {
          return (net.opengis.sos.x10.GetObservationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
        
        public static net.opengis.sos.x10.GetObservationDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
          return (net.opengis.sos.x10.GetObservationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
        
        /** @param xmlAsString the string value to parse */
        public static net.opengis.sos.x10.GetObservationDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
          return (net.opengis.sos.x10.GetObservationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
        
        public static net.opengis.sos.x10.GetObservationDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (net.opengis.sos.x10.GetObservationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
        
        /** @param file the file from which to load an xml document */
        public static net.opengis.sos.x10.GetObservationDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (net.opengis.sos.x10.GetObservationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
        
        public static net.opengis.sos.x10.GetObservationDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (net.opengis.sos.x10.GetObservationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
        
        public static net.opengis.sos.x10.GetObservationDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (net.opengis.sos.x10.GetObservationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
        
        public static net.opengis.sos.x10.GetObservationDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (net.opengis.sos.x10.GetObservationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
        
        public static net.opengis.sos.x10.GetObservationDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (net.opengis.sos.x10.GetObservationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
        
        public static net.opengis.sos.x10.GetObservationDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (net.opengis.sos.x10.GetObservationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
        
        public static net.opengis.sos.x10.GetObservationDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (net.opengis.sos.x10.GetObservationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
        
        public static net.opengis.sos.x10.GetObservationDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (net.opengis.sos.x10.GetObservationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
        
        public static net.opengis.sos.x10.GetObservationDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
          return (net.opengis.sos.x10.GetObservationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
        
        public static net.opengis.sos.x10.GetObservationDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (net.opengis.sos.x10.GetObservationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
        
        public static net.opengis.sos.x10.GetObservationDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
          return (net.opengis.sos.x10.GetObservationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
        
        public static net.opengis.sos.x10.GetObservationDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (net.opengis.sos.x10.GetObservationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        public static net.opengis.sos.x10.GetObservationDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
          return (net.opengis.sos.x10.GetObservationDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        public static net.opengis.sos.x10.GetObservationDocument 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 (net.opengis.sos.x10.GetObservationDocument) 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