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