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