public static class XSISimpleTypes.Long extends XSISimpleTypes.XSISimpleType
XSI Schema instance of Long
ALL, LIST, NONE, RESTRICTION, UNION
Constructor and Description |
---|
Long() |
Modifier and Type | Method and Description |
---|---|
static SimpleType |
getInstance() |
Class |
getInstanceType()
This will return the intended Java Class for this element type.
|
String |
getName()
This returns the XML Schema declaration name of this type (both complex
and simple types have names ...)
|
Object |
getValue(Element element,
ElementValue[] value,
Attributes attrs,
Map hints)
This method is intended to receive the child elements in the form of
ElementValues (@see ElementValue).
|
canCreateAttributes, canEncode, encode, findChildElement, findChildElement, getChildType, getFacets, getFinal, getId, getNamespace, getParent, getParents, toAttribute
public static SimpleType getInstance()
schema.xsi.XSISimpleTypes.XSISimpleType#getInstance()
public String getName()
Type
This returns the XML Schema declaration name of this type (both complex and simple types have names ...)
schema.SimpleType#getLocalName()
public Object getValue(Element element, ElementValue[] value, Attributes attrs, Map hints)
Type
This method is intended to receive the child elements in the form of ElementValues (@see ElementValue). Recall that this is a pairing containing a reference to the type and the actual value (do not call .getValue on the types). This should return the real value (interpreted value) for this element based on it's children. Remember, this is a XML is a tree structure, so if you don't include some children, they are gone forever (so be careful when ignoring data).
If the element had #CData (Nested Child Text), this will appear in the first slot, with a null Element.
A SAXNotSupportedException should be thrown when the child's [inherited, default implementation of getValue(ElementValue[],Attributes)] method should be used.
schema.Type#getValue(java.lang.Object, org.xml.sax.Attributes)
public Class getInstanceType()
Type
This will return the intended Java Class for this element type. For generic complex types this will be an object array. SimpleTypes will match as they are parsed, and custom extensions will also return the appropriate class value.
org.geotools.xml.xsi.Type#getInstanceType()
Copyright © 1996–2018 Geotools. All rights reserved.