com.virtualweaver.xotics.datamodel.datatype
Interface XsdDataType

All Superinterfaces:
XoDataType
All Known Implementing Classes:
XsdAnySimpleType, XsdGC, XsdNMTokens

public interface XsdDataType
extends XoDataType


Field Summary
static java.lang.String XSD_NS_REF
           
 
Method Summary
 java.lang.Class getJavaTypeClass()
          All XSD datatypes are wrappers for a java object value.
 java.lang.Object getJavaTypeValue()
          All XSD datatypes are wrappers for a java object value.
 java.lang.String getLocalName()
          Returns the local name of the datatype. this method is used to identify any XSD datatype by a string, i.e. for instanciation in XPath requests.
 java.lang.String getNameSpace()
          Returns the namespace of the datatype.
 

Field Detail

XSD_NS_REF

public static final java.lang.String XSD_NS_REF
See Also:
Constant Field Values
Method Detail

getJavaTypeClass

public java.lang.Class getJavaTypeClass()
All XSD datatypes are wrappers for a java object value. This method gives the class of the java type of the XSD datatype value.


getJavaTypeValue

public java.lang.Object getJavaTypeValue()
All XSD datatypes are wrappers for a java object value. This method gives the java value object of the XSD datatype.


getLocalName

public java.lang.String getLocalName()
Returns the local name of the datatype. this method is used to identify any XSD datatype by a string, i.e. for instanciation in XPath requests.


getNameSpace

public java.lang.String getNameSpace()
Returns the namespace of the datatype.