net.opengis.ows.x11.AllowedValuesDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: AllowedValues
* Namespace: http://www.opengis.net/ows/1.1
* Java type: net.opengis.ows.x11.AllowedValuesDocument
*
* 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 AllowedValues(@http://www.opengis.net/ows/1.1) element.
*
* This is a complex type.
*/
public interface AllowedValuesDocument extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "allowedvalues2c9ddoctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "AllowedValues" element
*/
net.opengis.ows.x11.AllowedValuesDocument.AllowedValues getAllowedValues();
/**
* Sets the "AllowedValues" element
*/
void setAllowedValues(net.opengis.ows.x11.AllowedValuesDocument.AllowedValues allowedValues);
/**
* Appends and returns a new empty "AllowedValues" element
*/
net.opengis.ows.x11.AllowedValuesDocument.AllowedValues addNewAllowedValues();
/**
* An XML AllowedValues(@http://www.opengis.net/ows/1.1).
*
* This is a complex type.
*/
public interface AllowedValues extends org.apache.xmlbeans.XmlObject {
ElementFactory Factory = new ElementFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "allowedvalues66a7elemtype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets a List of "Value" elements
*/
java.util.List getValueList();
/**
* Gets array of all "Value" elements
*/
net.opengis.ows.x11.ValueType[] getValueArray();
/**
* Gets ith "Value" element
*/
net.opengis.ows.x11.ValueType getValueArray(int i);
/**
* Returns number of "Value" element
*/
int sizeOfValueArray();
/**
* Sets array of all "Value" element
*/
void setValueArray(net.opengis.ows.x11.ValueType[] valueArray);
/**
* Sets ith "Value" element
*/
void setValueArray(int i, net.opengis.ows.x11.ValueType value);
/**
* Inserts and returns a new empty value (as xml) as the ith "Value" element
*/
net.opengis.ows.x11.ValueType insertNewValue(int i);
/**
* Appends and returns a new empty value (as xml) as the last "Value" element
*/
net.opengis.ows.x11.ValueType addNewValue();
/**
* Removes the ith "Value" element
*/
void removeValue(int i);
/**
* Gets a List of "Range" elements
*/
java.util.List getRangeList();
/**
* Gets array of all "Range" elements
*/
net.opengis.ows.x11.RangeType[] getRangeArray();
/**
* Gets ith "Range" element
*/
net.opengis.ows.x11.RangeType getRangeArray(int i);
/**
* Returns number of "Range" element
*/
int sizeOfRangeArray();
/**
* Sets array of all "Range" element
*/
void setRangeArray(net.opengis.ows.x11.RangeType[] rangeArray);
/**
* Sets ith "Range" element
*/
void setRangeArray(int i, net.opengis.ows.x11.RangeType range);
/**
* Inserts and returns a new empty value (as xml) as the ith "Range" element
*/
net.opengis.ows.x11.RangeType insertNewRange(int i);
/**
* Appends and returns a new empty value (as xml) as the last "Range" element
*/
net.opengis.ows.x11.RangeType addNewRange();
/**
* Removes the ith "Range" element
*/
void removeRange(int i);
}
}