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