public class XSIntegerBinding extends Object implements SimpleBinding
<xs:simpleType name="integer" id="integer">
<xs:annotation>
<xs:documentation source="http://www.w3.org/TR/xmlschema-2/#integer"/>
</xs:annotation>
<xs:restriction base="xs:decimal">
<xs:fractionDigits value="0" fixed="true" id="integer.fractionDigits"/>
<xs:pattern value="[\-+]?[0-9]+"/>
</xs:restriction>
</xs:simpleType>
Constructor and Description |
---|
XSIntegerBinding() |
Modifier and Type | Method and Description |
---|---|
String |
encode(Object object,
String value) |
int |
getExecutionMode() |
QName |
getTarget() |
Class |
getType()
This binding returns objects of type
BigInteger |
Object |
parse(InstanceComponent instance,
Object value)
This binding returns objects of type
BigInteger |
public QName getTarget()
public int getExecutionMode()
getExecutionMode
in interface Binding
Binding.AFTER
,
Binding.BEFORE
,
Binding.OVERRIDE
public Class getType()
BigInteger
.
public Object parse(InstanceComponent instance, Object value) throws Exception
BigInteger
.
parse
in interface SimpleBinding
instance
- The component 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.Exception
public String encode(Object object, String value)
encode
in interface SimpleBinding
object
- The object being encoded, never null.value
- The string returned from another binding in the type hierachy, which could be
null.Copyright © 1996–2019 Geotools. All rights reserved.