001    /*
002     * XML Type:  patternType
003     * Namespace: http://geronimo.apache.org/xml/ns/naming-1.2
004     * Java type: org.apache.geronimo.xbeans.geronimo.naming.GerPatternType
005     *
006     * Automatically generated - do not modify.
007     */
008    package org.apache.geronimo.xbeans.geronimo.naming;
009    
010    
011    /**
012     * An XML patternType(@http://geronimo.apache.org/xml/ns/naming-1.2).
013     *
014     * This is a complex type.
015     */
016    public interface GerPatternType extends org.apache.xmlbeans.XmlObject
017    {
018        public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
019            org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(GerPatternType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s5BE83D0C34A23529A2EB03BDF6E4EE25").resolveHandle("patterntype441atype");
020        
021        /**
022         * Gets the "groupId" element
023         */
024        java.lang.String getGroupId();
025        
026        /**
027         * Gets (as xml) the "groupId" element
028         */
029        org.apache.xmlbeans.XmlString xgetGroupId();
030        
031        /**
032         * True if has "groupId" element
033         */
034        boolean isSetGroupId();
035        
036        /**
037         * Sets the "groupId" element
038         */
039        void setGroupId(java.lang.String groupId);
040        
041        /**
042         * Sets (as xml) the "groupId" element
043         */
044        void xsetGroupId(org.apache.xmlbeans.XmlString groupId);
045        
046        /**
047         * Unsets the "groupId" element
048         */
049        void unsetGroupId();
050        
051        /**
052         * Gets the "artifactId" element
053         */
054        java.lang.String getArtifactId();
055        
056        /**
057         * Gets (as xml) the "artifactId" element
058         */
059        org.apache.xmlbeans.XmlString xgetArtifactId();
060        
061        /**
062         * True if has "artifactId" element
063         */
064        boolean isSetArtifactId();
065        
066        /**
067         * Sets the "artifactId" element
068         */
069        void setArtifactId(java.lang.String artifactId);
070        
071        /**
072         * Sets (as xml) the "artifactId" element
073         */
074        void xsetArtifactId(org.apache.xmlbeans.XmlString artifactId);
075        
076        /**
077         * Unsets the "artifactId" element
078         */
079        void unsetArtifactId();
080        
081        /**
082         * Gets the "version" element
083         */
084        java.lang.String getVersion();
085        
086        /**
087         * Gets (as xml) the "version" element
088         */
089        org.apache.xmlbeans.XmlString xgetVersion();
090        
091        /**
092         * True if has "version" element
093         */
094        boolean isSetVersion();
095        
096        /**
097         * Sets the "version" element
098         */
099        void setVersion(java.lang.String version);
100        
101        /**
102         * Sets (as xml) the "version" element
103         */
104        void xsetVersion(org.apache.xmlbeans.XmlString version);
105        
106        /**
107         * Unsets the "version" element
108         */
109        void unsetVersion();
110        
111        /**
112         * Gets the "module" element
113         */
114        java.lang.String getModule();
115        
116        /**
117         * Gets (as xml) the "module" element
118         */
119        org.apache.xmlbeans.XmlString xgetModule();
120        
121        /**
122         * True if has "module" element
123         */
124        boolean isSetModule();
125        
126        /**
127         * Sets the "module" element
128         */
129        void setModule(java.lang.String module);
130        
131        /**
132         * Sets (as xml) the "module" element
133         */
134        void xsetModule(org.apache.xmlbeans.XmlString module);
135        
136        /**
137         * Unsets the "module" element
138         */
139        void unsetModule();
140        
141        /**
142         * Gets the "name" element
143         */
144        java.lang.String getName();
145        
146        /**
147         * Gets (as xml) the "name" element
148         */
149        org.apache.xmlbeans.XmlString xgetName();
150        
151        /**
152         * Sets the "name" element
153         */
154        void setName(java.lang.String name);
155        
156        /**
157         * Sets (as xml) the "name" element
158         */
159        void xsetName(org.apache.xmlbeans.XmlString name);
160        
161        /**
162         * A factory class with static methods for creating instances
163         * of this type.
164         */
165        
166        public static final class Factory
167        {
168            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType newInstance() {
169              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
170            
171            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType newInstance(org.apache.xmlbeans.XmlOptions options) {
172              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
173            
174            /** @param xmlAsString the string value to parse */
175            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
176              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
177            
178            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
179              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
180            
181            /** @param file the file from which to load an xml document */
182            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
183              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
184            
185            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
186              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
187            
188            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
189              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
190            
191            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
192              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
193            
194            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
195              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
196            
197            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
198              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
199            
200            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
201              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
202            
203            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
204              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
205            
206            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
207              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
208            
209            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
210              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
211            
212            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
213              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
214            
215            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
216              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
217            
218            /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
219            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
220              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
221            
222            /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
223            public static org.apache.geronimo.xbeans.geronimo.naming.GerPatternType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
224              return (org.apache.geronimo.xbeans.geronimo.naming.GerPatternType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
225            
226            /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
227            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 {
228              return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
229            
230            /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
231            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 {
232              return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
233            
234            private Factory() { } // No instance of this class allowed
235        }
236    }