net.opengis.ogc.impl.PropertyIsEqualToDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: PropertyIsEqualTo
* Namespace: http://www.opengis.net/ogc
* Java type: net.opengis.ogc.PropertyIsEqualToDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.ogc.impl;
/**
* A document containing one PropertyIsEqualTo(@http://www.opengis.net/ogc) element.
*
* This is a complex type.
*/
public class PropertyIsEqualToDocumentImpl extends net.opengis.ogc.impl.ComparisonOpsDocumentImpl implements net.opengis.ogc.PropertyIsEqualToDocument
{
private static final long serialVersionUID = 1L;
public PropertyIsEqualToDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName PROPERTYISEQUALTO$0 =
new javax.xml.namespace.QName("http://www.opengis.net/ogc", "PropertyIsEqualTo");
/**
* Gets the "PropertyIsEqualTo" element
*/
public net.opengis.ogc.BinaryComparisonOpType getPropertyIsEqualTo()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.ogc.BinaryComparisonOpType target = null;
target = (net.opengis.ogc.BinaryComparisonOpType)get_store().find_element_user(PROPERTYISEQUALTO$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "PropertyIsEqualTo" element
*/
public void setPropertyIsEqualTo(net.opengis.ogc.BinaryComparisonOpType propertyIsEqualTo)
{
synchronized (monitor())
{
check_orphaned();
net.opengis.ogc.BinaryComparisonOpType target = null;
target = (net.opengis.ogc.BinaryComparisonOpType)get_store().find_element_user(PROPERTYISEQUALTO$0, 0);
if (target == null)
{
target = (net.opengis.ogc.BinaryComparisonOpType)get_store().add_element_user(PROPERTYISEQUALTO$0);
}
target.set(propertyIsEqualTo);
}
}
/**
* Appends and returns a new empty "PropertyIsEqualTo" element
*/
public net.opengis.ogc.BinaryComparisonOpType addNewPropertyIsEqualTo()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.ogc.BinaryComparisonOpType target = null;
target = (net.opengis.ogc.BinaryComparisonOpType)get_store().add_element_user(PROPERTYISEQUALTO$0);
return target;
}
}
}