Class PointTypeBinding

  • All Implemented Interfaces:
    Binding, ComplexBinding

    public class PointTypeBinding
    extends AbstractComplexBinding
    Binding object for the type http://www.opengis.net/gml:PointType.

             
      <complexType name="PointType">
          <annotation>
              <documentation>A Point is defined by a single coordinate tuple.</documentation>
          </annotation>
          <complexContent>
              <extension base="gml:AbstractGeometricPrimitiveType">
                  <sequence>
                      <choice>
                          <annotation>
                              <documentation>GML supports two different ways to specify the direct poisiton of a point. 1. The "pos" element is of type
                                                              DirectPositionType.</documentation>
                          </annotation>
                          <element ref="gml:pos"/>
                          <element ref="gml:coordinates">
                              <annotation>
                                  <documentation>Deprecated with GML version 3.1.0 for coordinates with ordinate values that are numbers. Use "pos"
                                                                      instead. The "coordinates" element shall only be used for coordinates with ordinates that require a string
                                                                      representation, e.g. DMS representations.</documentation>
                              </annotation>
                          </element>
                          <element ref="gml:coord">
                              <annotation>
                                  <documentation>Deprecated with GML version 3.0. Use "pos" instead. The "coord" element is included for
                                                                      backwards compatibility with GML 2.</documentation>
                              </annotation>
                          </element>
                      </choice>
                  </sequence>
              </extension>
          </complexContent>
      </complexType>
    
              
             
    • Constructor Detail

      • PointTypeBinding

        public PointTypeBinding​(GeometryFactory gFactory)
    • Method Detail

      • getTarget

        public QName getTarget()
        Returns:
        The qualified name of the target for the binding.
      • getType

        public Class getType()
        Returns:
        The java type this binding maps to.
      • parse

        public Object parse​(ElementInstance instance,
                            Node node,
                            Object value)
                     throws Exception
        Specified by:
        parse in interface ComplexBinding
        Overrides:
        parse in class AbstractComplexBinding
        Parameters:
        instance - The element being parsed.
        node - The node in the parse tree representing the element being parsed.
        value - The result of the parse from another strategy in the type hierarchy. Could be null if this is the first strategy being executed.
        Returns:
        The parsed object, or null if the component could not be parsed.
        Throws:
        Exception - Strategy objects should not attempt to handle any exceptions.