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