net.opengis.ows.HTTPDocument Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: HTTP
* Namespace: http://www.opengis.net/ows
* Java type: net.opengis.ows.HTTPDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.ows;
/**
* A document containing one HTTP(@http://www.opengis.net/ows) element.
*
* This is a complex type.
*/
public interface HTTPDocument extends org.apache.xmlbeans.XmlObject
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(HTTPDocument.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3827DF28D9531B904EA57F054D0AD67D").resolveHandle("httpcfe8doctype");
/**
* Gets the "HTTP" element
*/
net.opengis.ows.HTTPDocument.HTTP getHTTP();
/**
* Sets the "HTTP" element
*/
void setHTTP(net.opengis.ows.HTTPDocument.HTTP http);
/**
* Appends and returns a new empty "HTTP" element
*/
net.opengis.ows.HTTPDocument.HTTP addNewHTTP();
/**
* An XML HTTP(@http://www.opengis.net/ows).
*
* This is a complex type.
*/
public interface HTTP extends org.apache.xmlbeans.XmlObject
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(HTTP.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3827DF28D9531B904EA57F054D0AD67D").resolveHandle("http840celemtype");
/**
* Gets array of all "Get" elements
*/
net.opengis.ows.RequestMethodType[] getGetArray();
/**
* Gets ith "Get" element
*/
net.opengis.ows.RequestMethodType getGetArray(int i);
/**
* Returns number of "Get" element
*/
int sizeOfGetArray();
/**
* Sets array of all "Get" element
*/
void setGetArray(net.opengis.ows.RequestMethodType[] getArray);
/**
* Sets ith "Get" element
*/
void setGetArray(int i, net.opengis.ows.RequestMethodType get);
/**
* Inserts and returns a new empty value (as xml) as the ith "Get" element
*/
net.opengis.ows.RequestMethodType insertNewGet(int i);
/**
* Appends and returns a new empty value (as xml) as the last "Get" element
*/
net.opengis.ows.RequestMethodType addNewGet();
/**
* Removes the ith "Get" element
*/
void removeGet(int i);
/**
* Gets array of all "Post" elements
*/
net.opengis.ows.RequestMethodType[] getPostArray();
/**
* Gets ith "Post" element
*/
net.opengis.ows.RequestMethodType getPostArray(int i);
/**
* Returns number of "Post" element
*/
int sizeOfPostArray();
/**
* Sets array of all "Post" element
*/
void setPostArray(net.opengis.ows.RequestMethodType[] postArray);
/**
* Sets ith "Post" element
*/
void setPostArray(int i, net.opengis.ows.RequestMethodType post);
/**
* Inserts and returns a new empty value (as xml) as the ith "Post" element
*/
net.opengis.ows.RequestMethodType insertNewPost(int i);
/**
* Appends and returns a new empty value (as xml) as the last "Post" element
*/
net.opengis.ows.RequestMethodType addNewPost();
/**
* Removes the ith "Post" element
*/
void removePost(int i);
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static net.opengis.ows.HTTPDocument.HTTP newInstance() {
return (net.opengis.ows.HTTPDocument.HTTP) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static net.opengis.ows.HTTPDocument.HTTP newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.opengis.ows.HTTPDocument.HTTP) 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.ows.HTTPDocument newInstance() {
return (net.opengis.ows.HTTPDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static net.opengis.ows.HTTPDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.opengis.ows.HTTPDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static net.opengis.ows.HTTPDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (net.opengis.ows.HTTPDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
public static net.opengis.ows.HTTPDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.opengis.ows.HTTPDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
/** @param file the file from which to load an xml document */
public static net.opengis.ows.HTTPDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.ows.HTTPDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
public static net.opengis.ows.HTTPDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.ows.HTTPDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
public static net.opengis.ows.HTTPDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.ows.HTTPDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
public static net.opengis.ows.HTTPDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.ows.HTTPDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
public static net.opengis.ows.HTTPDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.ows.HTTPDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
public static net.opengis.ows.HTTPDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.ows.HTTPDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
public static net.opengis.ows.HTTPDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.ows.HTTPDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
public static net.opengis.ows.HTTPDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.ows.HTTPDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
public static net.opengis.ows.HTTPDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (net.opengis.ows.HTTPDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
public static net.opengis.ows.HTTPDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.opengis.ows.HTTPDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
public static net.opengis.ows.HTTPDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (net.opengis.ows.HTTPDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
public static net.opengis.ows.HTTPDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.opengis.ows.HTTPDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static net.opengis.ows.HTTPDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (net.opengis.ows.HTTPDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static net.opengis.ows.HTTPDocument 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.ows.HTTPDocument) 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 - 2025 Weber Informatics LLC | Privacy Policy