Package org.apache.xmlbeans
Class XmlNOTATION.Factory
- java.lang.Object
-
- org.apache.xmlbeans.XmlNOTATION.Factory
-
- Enclosing interface:
- XmlNOTATION
public static final class XmlNOTATION.Factory extends java.lang.Object
A class with methods for creating instances ofXmlNOTATION
.
-
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static XmlNOTATION
newInstance()
Creates an empty instance ofXmlNOTATION
static XmlNOTATION
newInstance(XmlOptions options)
Creates an empty instance ofXmlNOTATION
static XMLInputStream
newValidatingXMLInputStream(XMLInputStream xis)
Deprecated.XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.static XMLInputStream
newValidatingXMLInputStream(XMLInputStream xis, XmlOptions options)
Deprecated.XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.static XmlNOTATION
newValue(java.lang.Object obj)
Creates an immutableXmlNOTATION
valuestatic XmlNOTATION
parse(java.io.File f)
Parses aXmlNOTATION
fragment from a File.static XmlNOTATION
parse(java.io.File f, XmlOptions options)
Parses aXmlNOTATION
fragment from a File.static XmlNOTATION
parse(java.io.InputStream is)
Parses aXmlNOTATION
fragment from an InputStream.static XmlNOTATION
parse(java.io.InputStream is, XmlOptions options)
Parses aXmlNOTATION
fragment from an InputStream.static XmlNOTATION
parse(java.io.Reader r)
Parses aXmlNOTATION
fragment from a Reader.static XmlNOTATION
parse(java.io.Reader r, XmlOptions options)
Parses aXmlNOTATION
fragment from a Reader.static XmlNOTATION
parse(java.lang.String s)
Parses aXmlNOTATION
fragment from a String.static XmlNOTATION
parse(java.lang.String s, XmlOptions options)
Parses aXmlNOTATION
fragment from a String.static XmlNOTATION
parse(java.net.URL u)
Parses aXmlNOTATION
fragment from a URL.static XmlNOTATION
parse(java.net.URL u, XmlOptions options)
Parses aXmlNOTATION
fragment from a URL.static XmlNOTATION
parse(javax.xml.stream.XMLStreamReader xsr)
Parses aXmlNOTATION
fragment from an XMLStreamReader.static XmlNOTATION
parse(javax.xml.stream.XMLStreamReader xsr, XmlOptions options)
Parses aXmlNOTATION
fragment from an XMLStreamReader.static XmlNOTATION
parse(XMLInputStream xis)
Deprecated.XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.static XmlNOTATION
parse(XMLInputStream xis, XmlOptions options)
Deprecated.XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.static XmlNOTATION
parse(org.w3c.dom.Node node)
Parses aXmlNOTATION
fragment from a DOM Node.static XmlNOTATION
parse(org.w3c.dom.Node node, XmlOptions options)
Parses aXmlNOTATION
fragment from a DOM Node.
-
-
-
Method Detail
-
newInstance
public static XmlNOTATION newInstance()
Creates an empty instance ofXmlNOTATION
-
newInstance
public static XmlNOTATION newInstance(XmlOptions options)
Creates an empty instance ofXmlNOTATION
-
newValue
public static XmlNOTATION newValue(java.lang.Object obj)
Creates an immutableXmlNOTATION
value
-
parse
public static XmlNOTATION parse(java.lang.String s) throws XmlException
Parses aXmlNOTATION
fragment from a String.- Throws:
XmlException
-
parse
public static XmlNOTATION parse(java.lang.String s, XmlOptions options) throws XmlException
Parses aXmlNOTATION
fragment from a String.- Throws:
XmlException
-
parse
public static XmlNOTATION parse(java.io.File f) throws XmlException, java.io.IOException
Parses aXmlNOTATION
fragment from a File.- Throws:
XmlException
java.io.IOException
-
parse
public static XmlNOTATION parse(java.io.File f, XmlOptions options) throws XmlException, java.io.IOException
Parses aXmlNOTATION
fragment from a File.- Throws:
XmlException
java.io.IOException
-
parse
public static XmlNOTATION parse(java.net.URL u) throws XmlException, java.io.IOException
Parses aXmlNOTATION
fragment from a URL.- Throws:
XmlException
java.io.IOException
-
parse
public static XmlNOTATION parse(java.net.URL u, XmlOptions options) throws XmlException, java.io.IOException
Parses aXmlNOTATION
fragment from a URL.- Throws:
XmlException
java.io.IOException
-
parse
public static XmlNOTATION parse(java.io.InputStream is) throws XmlException, java.io.IOException
Parses aXmlNOTATION
fragment from an InputStream.- Throws:
XmlException
java.io.IOException
-
parse
public static XmlNOTATION parse(java.io.InputStream is, XmlOptions options) throws XmlException, java.io.IOException
Parses aXmlNOTATION
fragment from an InputStream.- Throws:
XmlException
java.io.IOException
-
parse
public static XmlNOTATION parse(java.io.Reader r) throws XmlException, java.io.IOException
Parses aXmlNOTATION
fragment from a Reader.- Throws:
XmlException
java.io.IOException
-
parse
public static XmlNOTATION parse(java.io.Reader r, XmlOptions options) throws XmlException, java.io.IOException
Parses aXmlNOTATION
fragment from a Reader.- Throws:
XmlException
java.io.IOException
-
parse
public static XmlNOTATION parse(org.w3c.dom.Node node) throws XmlException
Parses aXmlNOTATION
fragment from a DOM Node.- Throws:
XmlException
-
parse
public static XmlNOTATION parse(org.w3c.dom.Node node, XmlOptions options) throws XmlException
Parses aXmlNOTATION
fragment from a DOM Node.- Throws:
XmlException
-
parse
public static XmlNOTATION parse(XMLInputStream xis) throws XmlException, XMLStreamException
Deprecated.XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.Parses aXmlNOTATION
fragment from an XMLInputStream.- Throws:
XmlException
XMLStreamException
-
parse
public static XmlNOTATION parse(XMLInputStream xis, XmlOptions options) throws XmlException, XMLStreamException
Deprecated.XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.Parses aXmlNOTATION
fragment from an XMLInputStream.- Throws:
XmlException
XMLStreamException
-
parse
public static XmlNOTATION parse(javax.xml.stream.XMLStreamReader xsr) throws XmlException
Parses aXmlNOTATION
fragment from an XMLStreamReader.- Throws:
XmlException
-
parse
public static XmlNOTATION parse(javax.xml.stream.XMLStreamReader xsr, XmlOptions options) throws XmlException
Parses aXmlNOTATION
fragment from an XMLStreamReader.- Throws:
XmlException
-
newValidatingXMLInputStream
public static XMLInputStream newValidatingXMLInputStream(XMLInputStream xis) throws XmlException, XMLStreamException
Deprecated.XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.Returns a validating XMLInputStream.- Throws:
XmlException
XMLStreamException
-
newValidatingXMLInputStream
public static XMLInputStream newValidatingXMLInputStream(XMLInputStream xis, XmlOptions options) throws XmlException, XMLStreamException
Deprecated.XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.Returns a validating XMLInputStream.- Throws:
XmlException
XMLStreamException
-
-