Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
net.opengis.sos.x10.GetResultResponseDocument Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: GetResultResponse
* Namespace: http://www.opengis.net/sos/1.0
* Java type: net.opengis.sos.x10.GetResultResponseDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.sos.x10;
/**
* A document containing one GetResultResponse(@http://www.opengis.net/sos/1.0) element.
*
* This is a complex type.
*/
public interface GetResultResponseDocument extends org.apache.xmlbeans.XmlObject
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(GetResultResponseDocument.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s10AF7FD2A8F04E8111EC741B860FB1D5").resolveHandle("getresultresponse3b5edoctype");
/**
* Gets the "GetResultResponse" element
*/
net.opengis.sos.x10.GetResultResponseDocument.GetResultResponse getGetResultResponse();
/**
* Sets the "GetResultResponse" element
*/
void setGetResultResponse(net.opengis.sos.x10.GetResultResponseDocument.GetResultResponse getResultResponse);
/**
* Appends and returns a new empty "GetResultResponse" element
*/
net.opengis.sos.x10.GetResultResponseDocument.GetResultResponse addNewGetResultResponse();
/**
* An XML GetResultResponse(@http://www.opengis.net/sos/1.0).
*
* This is a complex type.
*/
public interface GetResultResponse extends org.apache.xmlbeans.XmlObject
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(GetResultResponse.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s10AF7FD2A8F04E8111EC741B860FB1D5").resolveHandle("getresultresponsea89eelemtype");
/**
* Gets the "result" element
*/
net.opengis.sos.x10.GetResultResponseDocument.GetResultResponse.Result getResult();
/**
* Sets the "result" element
*/
void setResult(net.opengis.sos.x10.GetResultResponseDocument.GetResultResponse.Result result);
/**
* Appends and returns a new empty "result" element
*/
net.opengis.sos.x10.GetResultResponseDocument.GetResultResponse.Result addNewResult();
/**
* An XML result(@http://www.opengis.net/sos/1.0).
*
* This is an atomic type that is a restriction of net.opengis.sos.x10.GetResultResponseDocument$GetResultResponse$Result.
*/
public interface Result extends org.apache.xmlbeans.XmlString
{
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("result9fc5elemtype");
/**
* Gets the "RS" attribute
*/
java.lang.String getRS();
/**
* Gets (as xml) the "RS" attribute
*/
org.apache.xmlbeans.XmlAnyURI xgetRS();
/**
* Sets the "RS" attribute
*/
void setRS(java.lang.String rs);
/**
* Sets (as xml) the "RS" attribute
*/
void xsetRS(org.apache.xmlbeans.XmlAnyURI rs);
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static net.opengis.sos.x10.GetResultResponseDocument.GetResultResponse.Result newInstance() {
return (net.opengis.sos.x10.GetResultResponseDocument.GetResultResponse.Result) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static net.opengis.sos.x10.GetResultResponseDocument.GetResultResponse.Result newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.opengis.sos.x10.GetResultResponseDocument.GetResultResponse.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.GetResultResponseDocument.GetResultResponse newInstance() {
return (net.opengis.sos.x10.GetResultResponseDocument.GetResultResponse) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static net.opengis.sos.x10.GetResultResponseDocument.GetResultResponse newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.opengis.sos.x10.GetResultResponseDocument.GetResultResponse) 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.GetResultResponseDocument newInstance() {
return (net.opengis.sos.x10.GetResultResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static net.opengis.sos.x10.GetResultResponseDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.opengis.sos.x10.GetResultResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static net.opengis.sos.x10.GetResultResponseDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (net.opengis.sos.x10.GetResultResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
public static net.opengis.sos.x10.GetResultResponseDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.opengis.sos.x10.GetResultResponseDocument) 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.GetResultResponseDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.sos.x10.GetResultResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
public static net.opengis.sos.x10.GetResultResponseDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.sos.x10.GetResultResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
public static net.opengis.sos.x10.GetResultResponseDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.sos.x10.GetResultResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
public static net.opengis.sos.x10.GetResultResponseDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.sos.x10.GetResultResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
public static net.opengis.sos.x10.GetResultResponseDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.sos.x10.GetResultResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
public static net.opengis.sos.x10.GetResultResponseDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.sos.x10.GetResultResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
public static net.opengis.sos.x10.GetResultResponseDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.sos.x10.GetResultResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
public static net.opengis.sos.x10.GetResultResponseDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.opengis.sos.x10.GetResultResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
public static net.opengis.sos.x10.GetResultResponseDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (net.opengis.sos.x10.GetResultResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
public static net.opengis.sos.x10.GetResultResponseDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.opengis.sos.x10.GetResultResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
public static net.opengis.sos.x10.GetResultResponseDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (net.opengis.sos.x10.GetResultResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
public static net.opengis.sos.x10.GetResultResponseDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.opengis.sos.x10.GetResultResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static net.opengis.sos.x10.GetResultResponseDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (net.opengis.sos.x10.GetResultResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static net.opengis.sos.x10.GetResultResponseDocument 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.GetResultResponseDocument) 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
}
}