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