Package net.opengis.ogc
Interface BinarySpatialOpType
-
- All Superinterfaces:
SpatialOpsType,org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
BinarySpatialOpTypeImpl
public interface BinarySpatialOpType extends SpatialOpsType
An XML BinarySpatialOpType(@http://www.opengis.net/ogc). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classBinarySpatialOpType.FactoryA factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static org.apache.xmlbeans.SchemaTypetype
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EnvelopeTypeaddNewEnvelope()Appends and returns a new empty "Envelope" elementAbstractGeometryTypeaddNewGeometry()Appends and returns a new empty "_Geometry" elementPropertyNameTypeaddNewPropertyName()Appends and returns a new empty value (as xml) as the last "PropertyName" elementEnvelopeTypegetEnvelope()Gets the "Envelope" elementAbstractGeometryTypegetGeometry()Gets the "_Geometry" elementPropertyNameType[]getPropertyNameArray()Gets array of all "PropertyName" elementsPropertyNameTypegetPropertyNameArray(int i)Gets ith "PropertyName" elementPropertyNameTypeinsertNewPropertyName(int i)Inserts and returns a new empty value (as xml) as the ith "PropertyName" elementbooleanisSetEnvelope()True if has "Envelope" elementbooleanisSetGeometry()True if has "_Geometry" elementvoidremovePropertyName(int i)Removes the ith "PropertyName" elementvoidsetEnvelope(EnvelopeType envelope)Sets the "Envelope" elementvoidsetGeometry(AbstractGeometryType geometry)Sets the "_Geometry" elementvoidsetPropertyNameArray(int i, PropertyNameType propertyName)Sets ith "PropertyName" elementvoidsetPropertyNameArray(PropertyNameType[] propertyNameArray)Sets array of all "PropertyName" elementintsizeOfPropertyNameArray()Returns number of "PropertyName" elementvoidunsetEnvelope()Unsets the "Envelope" elementvoidunsetGeometry()Unsets the "_Geometry" element-
Methods inherited from interface org.apache.xmlbeans.XmlObject
changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode
-
Methods inherited from interface org.apache.xmlbeans.XmlTokenSource
documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Method Detail
-
getPropertyNameArray
PropertyNameType[] getPropertyNameArray()
Gets array of all "PropertyName" elements
-
getPropertyNameArray
PropertyNameType getPropertyNameArray(int i)
Gets ith "PropertyName" element
-
sizeOfPropertyNameArray
int sizeOfPropertyNameArray()
Returns number of "PropertyName" element
-
setPropertyNameArray
void setPropertyNameArray(PropertyNameType[] propertyNameArray)
Sets array of all "PropertyName" element
-
setPropertyNameArray
void setPropertyNameArray(int i, PropertyNameType propertyName)Sets ith "PropertyName" element
-
insertNewPropertyName
PropertyNameType insertNewPropertyName(int i)
Inserts and returns a new empty value (as xml) as the ith "PropertyName" element
-
addNewPropertyName
PropertyNameType addNewPropertyName()
Appends and returns a new empty value (as xml) as the last "PropertyName" element
-
removePropertyName
void removePropertyName(int i)
Removes the ith "PropertyName" element
-
getGeometry
AbstractGeometryType getGeometry()
Gets the "_Geometry" element
-
isSetGeometry
boolean isSetGeometry()
True if has "_Geometry" element
-
setGeometry
void setGeometry(AbstractGeometryType geometry)
Sets the "_Geometry" element
-
addNewGeometry
AbstractGeometryType addNewGeometry()
Appends and returns a new empty "_Geometry" element
-
unsetGeometry
void unsetGeometry()
Unsets the "_Geometry" element
-
getEnvelope
EnvelopeType getEnvelope()
Gets the "Envelope" element
-
isSetEnvelope
boolean isSetEnvelope()
True if has "Envelope" element
-
setEnvelope
void setEnvelope(EnvelopeType envelope)
Sets the "Envelope" element
-
addNewEnvelope
EnvelopeType addNewEnvelope()
Appends and returns a new empty "Envelope" element
-
unsetEnvelope
void unsetEnvelope()
Unsets the "Envelope" element
-
-