net.opengis.ows.x11.OperationDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: Operation
* Namespace: http://www.opengis.net/ows/1.1
* Java type: net.opengis.ows.x11.OperationDocument
*
* 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 Operation(@http://www.opengis.net/ows/1.1) element.
*
* This is a complex type.
*/
public interface OperationDocument extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "operationa900doctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "Operation" element
*/
net.opengis.ows.x11.OperationDocument.Operation getOperation();
/**
* Sets the "Operation" element
*/
void setOperation(net.opengis.ows.x11.OperationDocument.Operation operation);
/**
* Appends and returns a new empty "Operation" element
*/
net.opengis.ows.x11.OperationDocument.Operation addNewOperation();
/**
* An XML Operation(@http://www.opengis.net/ows/1.1).
*
* This is a complex type.
*/
public interface Operation extends org.apache.xmlbeans.XmlObject {
ElementFactory Factory = new ElementFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "operationdf6delemtype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets a List of "DCP" elements
*/
java.util.List getDCPList();
/**
* Gets array of all "DCP" elements
*/
net.opengis.ows.x11.DCPDocument.DCP[] getDCPArray();
/**
* Gets ith "DCP" element
*/
net.opengis.ows.x11.DCPDocument.DCP getDCPArray(int i);
/**
* Returns number of "DCP" element
*/
int sizeOfDCPArray();
/**
* Sets array of all "DCP" element
*/
void setDCPArray(net.opengis.ows.x11.DCPDocument.DCP[] dcpArray);
/**
* Sets ith "DCP" element
*/
void setDCPArray(int i, net.opengis.ows.x11.DCPDocument.DCP dcp);
/**
* Inserts and returns a new empty value (as xml) as the ith "DCP" element
*/
net.opengis.ows.x11.DCPDocument.DCP insertNewDCP(int i);
/**
* Appends and returns a new empty value (as xml) as the last "DCP" element
*/
net.opengis.ows.x11.DCPDocument.DCP addNewDCP();
/**
* Removes the ith "DCP" element
*/
void removeDCP(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 a List of "Metadata" elements
*/
java.util.List getMetadataList();
/**
* Gets array of all "Metadata" elements
*/
net.opengis.ows.x11.MetadataType[] getMetadataArray();
/**
* Gets ith "Metadata" element
*/
net.opengis.ows.x11.MetadataType getMetadataArray(int i);
/**
* Returns number of "Metadata" element
*/
int sizeOfMetadataArray();
/**
* Sets array of all "Metadata" element
*/
void setMetadataArray(net.opengis.ows.x11.MetadataType[] metadataArray);
/**
* Sets ith "Metadata" element
*/
void setMetadataArray(int i, net.opengis.ows.x11.MetadataType metadata);
/**
* Inserts and returns a new empty value (as xml) as the ith "Metadata" element
*/
net.opengis.ows.x11.MetadataType insertNewMetadata(int i);
/**
* Appends and returns a new empty value (as xml) as the last "Metadata" element
*/
net.opengis.ows.x11.MetadataType addNewMetadata();
/**
* Removes the ith "Metadata" element
*/
void removeMetadata(int i);
/**
* Gets the "name" attribute
*/
java.lang.String getName();
/**
* Gets (as xml) the "name" attribute
*/
org.apache.xmlbeans.XmlString xgetName();
/**
* Sets the "name" attribute
*/
void setName(java.lang.String name);
/**
* Sets (as xml) the "name" attribute
*/
void xsetName(org.apache.xmlbeans.XmlString name);
}
}