/* * GeoTools - OpenSource mapping toolkit * http://geotools.org * (C) 2002-2006, GeoTools Project Managment Committee (PMC) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotools.filter.v1_1; import org.geotools.xml.*; import org.opengis.filter.FilterFactory; import javax.xml.namespace.QName; /** * Binding object for the type http://www.opengis.net/ogc:GeometryOperandType. * *

*

 *         
 *  <xsd:simpleType name="GeometryOperandType">
 *      <xsd:restriction base="xsd:QName">
 *          <xsd:enumeration value="gml:Envelope"/>
 *          <xsd:enumeration value="gml:Point"/>
 *          <xsd:enumeration value="gml:LineString"/>
 *          <xsd:enumeration value="gml:Polygon"/>
 *          <xsd:enumeration value="gml:ArcByCenterPoint"/>
 *          <xsd:enumeration value="gml:CircleByCenterPoint"/>
 *          <xsd:enumeration value="gml:Arc"/>
 *          <xsd:enumeration value="gml:Circle"/>
 *          <xsd:enumeration value="gml:ArcByBulge"/>
 *          <xsd:enumeration value="gml:Bezier"/>
 *          <xsd:enumeration value="gml:Clothoid"/>
 *          <xsd:enumeration value="gml:CubicSpline"/>
 *          <xsd:enumeration value="gml:Geodesic"/>
 *          <xsd:enumeration value="gml:OffsetCurve"/>
 *          <xsd:enumeration value="gml:Triangle"/>
 *          <xsd:enumeration value="gml:PolyhedralSurface"/>
 *          <xsd:enumeration value="gml:TriangulatedSurface"/>
 *          <xsd:enumeration value="gml:Tin"/>
 *          <xsd:enumeration value="gml:Solid"/>
 *      </xsd:restriction>
 *  </xsd:simpleType>
 *
 *          
 *         
*

* * @generated */ public class GeometryOperandTypeBinding extends AbstractSimpleBinding { FilterFactory filterfactory; public GeometryOperandTypeBinding(FilterFactory filterfactory) { this.filterfactory = filterfactory; } /** * @generated */ public QName getTarget() { return OGC.GEOMETRYOPERANDTYPE; } /** * * * * @generated modifiable */ public Class getType() { return null; } /** * * * * @generated modifiable */ public Object parse(InstanceComponent instance, Object value) throws Exception { //TODO: implement return null; } }