A class with methods for creating instances
of
Method from org.apache.xmlbeans.XmlDecimal$Factory Detail: |
public static XmlDecimal newInstance() {
return (XmlDecimal) XmlBeans.getContextTypeLoader().newInstance( type, null );
}
|
public static XmlDecimal newInstance(XmlOptions options) {
return (XmlDecimal) XmlBeans.getContextTypeLoader().newInstance( type, options );
}
|
public static XMLInputStream newValidatingXMLInputStream(XMLInputStream xis) throws XmlException, XMLStreamException {
return XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null );
} Deprecated! XMLInputStream - was deprecated by XMLStreamReader from STaX - jsr173 API.
Returns a validating XMLInputStream. |
public static XMLInputStream newValidatingXMLInputStream(XMLInputStream xis,
XmlOptions options) throws XmlException, XMLStreamException {
return XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options );
} Deprecated! XMLInputStream - was deprecated by XMLStreamReader from STaX - jsr173 API.
Returns a validating XMLInputStream. |
public static XmlDecimal newValue(Object obj) {
return (XmlDecimal) type.newValue( obj );
}
|
public static XmlDecimal parse(String s) throws XmlException {
return (XmlDecimal) XmlBeans.getContextTypeLoader().parse( s, type, null );
}
Parses a XmlDecimal fragment from a String. For example: "<xml-fragment>1234.56789</xml-fragment> ". |
public static XmlDecimal parse(File f) throws XmlException, IOException {
return (XmlDecimal) XmlBeans.getContextTypeLoader().parse( f, type, null );
}
|
public static XmlDecimal parse(URL u) throws XmlException, IOException {
return (XmlDecimal) XmlBeans.getContextTypeLoader().parse( u, type, null );
}
|
public static XmlDecimal parse(InputStream is) throws XmlException, IOException {
return (XmlDecimal) XmlBeans.getContextTypeLoader().parse( is, type, null );
}
|
public static XmlDecimal parse(Reader r) throws XmlException, IOException {
return (XmlDecimal) XmlBeans.getContextTypeLoader().parse( r, type, null );
}
|
public static XmlDecimal parse(Node node) throws XmlException {
return (XmlDecimal) XmlBeans.getContextTypeLoader().parse( node, type, null );
}
|
public static XmlDecimal parse(XMLInputStream xis) throws XmlException, XMLStreamException {
return (XmlDecimal) XmlBeans.getContextTypeLoader().parse( xis, type, null );
} Deprecated! XMLInputStream - was deprecated by XMLStreamReader from STaX - jsr173 API.
Parses a XmlDecimal fragment from an XMLInputStream. |
public static XmlDecimal parse(XMLStreamReader xsr) throws XmlException {
return (XmlDecimal) XmlBeans.getContextTypeLoader().parse( xsr, type, null );
}
Parses a XmlDecimal fragment from an XMLStreamReader. |
public static XmlDecimal parse(String s,
XmlOptions options) throws XmlException {
return (XmlDecimal) XmlBeans.getContextTypeLoader().parse( s, type, options );
}
Parses a XmlDecimal fragment from a String. For example: "<xml-fragment>1234.56789</xml-fragment> ". |
public static XmlDecimal parse(File f,
XmlOptions options) throws XmlException, IOException {
return (XmlDecimal) XmlBeans.getContextTypeLoader().parse( f, type, options );
}
|
public static XmlDecimal parse(URL u,
XmlOptions options) throws XmlException, IOException {
return (XmlDecimal) XmlBeans.getContextTypeLoader().parse( u, type, options );
}
|
public static XmlDecimal parse(InputStream is,
XmlOptions options) throws XmlException, IOException {
return (XmlDecimal) XmlBeans.getContextTypeLoader().parse( is, type, options );
}
|
public static XmlDecimal parse(Reader r,
XmlOptions options) throws XmlException, IOException {
return (XmlDecimal) XmlBeans.getContextTypeLoader().parse( r, type, options );
}
|
public static XmlDecimal parse(Node node,
XmlOptions options) throws XmlException {
return (XmlDecimal) XmlBeans.getContextTypeLoader().parse( node, type, options );
}
|
public static XmlDecimal parse(XMLInputStream xis,
XmlOptions options) throws XmlException, XMLStreamException {
return (XmlDecimal) XmlBeans.getContextTypeLoader().parse( xis, type, options );
} Deprecated! XMLInputStream - was deprecated by XMLStreamReader from STaX - jsr173 API.
Parses a XmlDecimal fragment from an XMLInputStream. |
public static XmlDecimal parse(XMLStreamReader xsr,
XmlOptions options) throws XmlException {
return (XmlDecimal) XmlBeans.getContextTypeLoader().parse( xsr, type, options );
}
Parses a XmlDecimal fragment from an XMLStreamReader. |