Package org.geotools.gml2.bindings
Class GMLCoordinatesTypeBinding
Object
AbstractComplexBinding
GMLCoordinatesTypeBinding
- All Implemented Interfaces:
Binding,ComplexBinding
Binding object for the type http://www.opengis.net/gml:CoordinatesType.
<complexType name="CoordinatesType">
<annotation>
<documentation> Coordinates can be included in a single
string, but there is no facility for validating
string content. The value of the 'cs' attribute
is the separator for coordinate values, and the value of the
'ts' attribute gives the tuple separator
(a single space by default); the default values may
be changed to reflect local usage. </documentation>
</annotation>
<simpleContent>
<extension base="string">
<attribute name="decimal" type="string" use="optional" default="."/>
<attribute name="cs" type="string" use="optional" default=","/>
<attribute name="ts" type="string" use="optional" default=" "/>
</extension>
</simpleContent>
</complexType>
-
Field Summary
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionSubclasses should override this method if need be, the default implementation returns value.getType()parse(ElementInstance instance, Node node, Object value) Returns an object of type TODO: this method should do more validation of the stringMethods inherited from class AbstractComplexBinding
getExecutionMode, getProperties, getProperty, initialize, initializeChildContext
-
Constructor Details
-
GMLCoordinatesTypeBinding
-
-
Method Details
-
getTarget
- Returns:
- The qualified name of the target for the binding.
-
getType
- Returns:
- The java type this binding maps to.
-
parse
Returns an object of type TODO: this method should do more validation of the string- Specified by:
parsein interfaceComplexBinding- Overrides:
parsein classAbstractComplexBinding- 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.
-
encode
Description copied from class:AbstractComplexBindingSubclasses should override this method if need be, the default implementation returns value.- Specified by:
encodein interfaceComplexBinding- Overrides:
encodein classAbstractComplexBinding- Parameters:
object- The object being encoded.document- The document containing the encoded element.value- The object as encoded by the parent binding.- Returns:
- The element for the objcet being encoded, or
null - Throws:
Exception
-