net.opengis.ows.x11.OperationsMetadataDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: OperationsMetadata
* Namespace: http://www.opengis.net/ows/1.1
* Java type: net.opengis.ows.x11.OperationsMetadataDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.ows.x11;
import org.apache.xmlbeans.impl.schema.ElementFactory;
import org.apache.xmlbeans.impl.schema.AbstractDocumentFactory;
import org.apache.xmlbeans.impl.schema.DocumentFactory;
import org.apache.xmlbeans.impl.schema.SimpleTypeFactory;
/**
* A document containing one OperationsMetadata(@http://www.opengis.net/ows/1.1) element.
*
* This is a complex type.
*/
public interface OperationsMetadataDocument extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "operationsmetadatab59adoctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "OperationsMetadata" element
*/
net.opengis.ows.x11.OperationsMetadataDocument.OperationsMetadata getOperationsMetadata();
/**
* Sets the "OperationsMetadata" element
*/
void setOperationsMetadata(net.opengis.ows.x11.OperationsMetadataDocument.OperationsMetadata operationsMetadata);
/**
* Appends and returns a new empty "OperationsMetadata" element
*/
net.opengis.ows.x11.OperationsMetadataDocument.OperationsMetadata addNewOperationsMetadata();
/**
* An XML OperationsMetadata(@http://www.opengis.net/ows/1.1).
*
* This is a complex type.
*/
public interface OperationsMetadata extends org.apache.xmlbeans.XmlObject {
ElementFactory Factory = new ElementFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "operationsmetadata5211elemtype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets a List of "Operation" elements
*/
java.util.List getOperationList();
/**
* Gets array of all "Operation" elements
*/
net.opengis.ows.x11.OperationDocument.Operation[] getOperationArray();
/**
* Gets ith "Operation" element
*/
net.opengis.ows.x11.OperationDocument.Operation getOperationArray(int i);
/**
* Returns number of "Operation" element
*/
int sizeOfOperationArray();
/**
* Sets array of all "Operation" element
*/
void setOperationArray(net.opengis.ows.x11.OperationDocument.Operation[] operationArray);
/**
* Sets ith "Operation" element
*/
void setOperationArray(int i, net.opengis.ows.x11.OperationDocument.Operation operation);
/**
* Inserts and returns a new empty value (as xml) as the ith "Operation" element
*/
net.opengis.ows.x11.OperationDocument.Operation insertNewOperation(int i);
/**
* Appends and returns a new empty value (as xml) as the last "Operation" element
*/
net.opengis.ows.x11.OperationDocument.Operation addNewOperation();
/**
* Removes the ith "Operation" element
*/
void removeOperation(int i);
/**
* Gets a List of "Parameter" elements
*/
java.util.List getParameterList();
/**
* Gets array of all "Parameter" elements
*/
net.opengis.ows.x11.DomainType[] getParameterArray();
/**
* Gets ith "Parameter" element
*/
net.opengis.ows.x11.DomainType getParameterArray(int i);
/**
* Returns number of "Parameter" element
*/
int sizeOfParameterArray();
/**
* Sets array of all "Parameter" element
*/
void setParameterArray(net.opengis.ows.x11.DomainType[] parameterArray);
/**
* Sets ith "Parameter" element
*/
void setParameterArray(int i, net.opengis.ows.x11.DomainType parameter);
/**
* Inserts and returns a new empty value (as xml) as the ith "Parameter" element
*/
net.opengis.ows.x11.DomainType insertNewParameter(int i);
/**
* Appends and returns a new empty value (as xml) as the last "Parameter" element
*/
net.opengis.ows.x11.DomainType addNewParameter();
/**
* Removes the ith "Parameter" element
*/
void removeParameter(int i);
/**
* Gets a List of "Constraint" elements
*/
java.util.List getConstraintList();
/**
* Gets array of all "Constraint" elements
*/
net.opengis.ows.x11.DomainType[] getConstraintArray();
/**
* Gets ith "Constraint" element
*/
net.opengis.ows.x11.DomainType getConstraintArray(int i);
/**
* Returns number of "Constraint" element
*/
int sizeOfConstraintArray();
/**
* Sets array of all "Constraint" element
*/
void setConstraintArray(net.opengis.ows.x11.DomainType[] constraintArray);
/**
* Sets ith "Constraint" element
*/
void setConstraintArray(int i, net.opengis.ows.x11.DomainType constraint);
/**
* Inserts and returns a new empty value (as xml) as the ith "Constraint" element
*/
net.opengis.ows.x11.DomainType insertNewConstraint(int i);
/**
* Appends and returns a new empty value (as xml) as the last "Constraint" element
*/
net.opengis.ows.x11.DomainType addNewConstraint();
/**
* Removes the ith "Constraint" element
*/
void removeConstraint(int i);
/**
* Gets the "ExtendedCapabilities" element
*/
org.apache.xmlbeans.XmlObject getExtendedCapabilities();
/**
* True if has "ExtendedCapabilities" element
*/
boolean isSetExtendedCapabilities();
/**
* Sets the "ExtendedCapabilities" element
*/
void setExtendedCapabilities(org.apache.xmlbeans.XmlObject extendedCapabilities);
/**
* Appends and returns a new empty "ExtendedCapabilities" element
*/
org.apache.xmlbeans.XmlObject addNewExtendedCapabilities();
/**
* Unsets the "ExtendedCapabilities" element
*/
void unsetExtendedCapabilities();
}
}