org.apache.xmlbeans
Class XmlUnsignedByte.Factory

java.lang.Object
  extended by org.apache.xmlbeans.XmlUnsignedByte.Factory
Enclosing interface:
XmlUnsignedByte

public static final class XmlUnsignedByte.Factory
extends Object

A class with methods for creating instances of XmlUnsignedByte.


Method Summary
static XmlUnsignedByte newInstance()
          Creates an empty instance of XmlUnsignedByte
static XmlUnsignedByte newInstance(XmlOptions options)
          Creates an empty instance of XmlUnsignedByte
static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis)
          Deprecated. XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.
static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, XmlOptions options)
          Deprecated. XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.
static XmlUnsignedByte newValue(Object obj)
          Creates an immutable XmlUnsignedByte value
static XmlUnsignedByte parse(File f)
          Parses a XmlUnsignedByte fragment from a File.
static XmlUnsignedByte parse(File f, XmlOptions options)
          Parses a XmlUnsignedByte fragment from a File.
static XmlUnsignedByte parse(InputStream is)
          Parses a XmlUnsignedByte fragment from an InputStream.
static XmlUnsignedByte parse(InputStream is, XmlOptions options)
          Parses a XmlUnsignedByte fragment from an InputStream.
static XmlUnsignedByte parse(Node node)
          Parses a XmlUnsignedByte fragment from a DOM Node.
static XmlUnsignedByte parse(Node node, XmlOptions options)
          Parses a XmlUnsignedByte fragment from a DOM Node.
static XmlUnsignedByte parse(Reader r)
          Parses a XmlUnsignedByte fragment from a Reader.
static XmlUnsignedByte parse(Reader r, XmlOptions options)
          Parses a XmlUnsignedByte fragment from a Reader.
static XmlUnsignedByte parse(String s)
          Parses a XmlUnsignedByte fragment from a String.
static XmlUnsignedByte parse(String s, XmlOptions options)
          Parses a XmlUnsignedByte fragment from a String.
static XmlUnsignedByte parse(URL u)
          Parses a XmlUnsignedByte fragment from a URL.
static XmlUnsignedByte parse(URL u, XmlOptions options)
          Parses a XmlUnsignedByte fragment from a URL.
static XmlUnsignedByte parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis)
          Deprecated. XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.
static XmlUnsignedByte parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, XmlOptions options)
          Deprecated. XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.
static XmlUnsignedByte parse(javax.xml.stream.XMLStreamReader xsr)
          Parses a XmlUnsignedByte fragment from an XMLStreamReader.
static XmlUnsignedByte parse(javax.xml.stream.XMLStreamReader xsr, XmlOptions options)
          Parses a XmlUnsignedByte fragment from an XMLStreamReader.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

newInstance

public static XmlUnsignedByte newInstance()
Creates an empty instance of XmlUnsignedByte


newInstance

public static XmlUnsignedByte newInstance(XmlOptions options)
Creates an empty instance of XmlUnsignedByte


newValue

public static XmlUnsignedByte newValue(Object obj)
Creates an immutable XmlUnsignedByte value


parse

public static XmlUnsignedByte parse(String s)
                             throws XmlException
Parses a XmlUnsignedByte fragment from a String. For example: "<xml-fragment>123</xml-fragment>".

Throws:
XmlException

parse

public static XmlUnsignedByte parse(String s,
                                    XmlOptions options)
                             throws XmlException
Parses a XmlUnsignedByte fragment from a String. For example: "<xml-fragment>123</xml-fragment>".

Throws:
XmlException

parse

public static XmlUnsignedByte parse(File f)
                             throws XmlException,
                                    IOException
Parses a XmlUnsignedByte fragment from a File.

Throws:
XmlException
IOException

parse

public static XmlUnsignedByte parse(File f,
                                    XmlOptions options)
                             throws XmlException,
                                    IOException
Parses a XmlUnsignedByte fragment from a File.

Throws:
XmlException
IOException

parse

public static XmlUnsignedByte parse(URL u)
                             throws XmlException,
                                    IOException
Parses a XmlUnsignedByte fragment from a URL.

Throws:
XmlException
IOException

parse

public static XmlUnsignedByte parse(URL u,
                                    XmlOptions options)
                             throws XmlException,
                                    IOException
Parses a XmlUnsignedByte fragment from a URL.

Throws:
XmlException
IOException

parse

public static XmlUnsignedByte parse(InputStream is)
                             throws XmlException,
                                    IOException
Parses a XmlUnsignedByte fragment from an InputStream.

Throws:
XmlException
IOException

parse

public static XmlUnsignedByte parse(InputStream is,
                                    XmlOptions options)
                             throws XmlException,
                                    IOException
Parses a XmlUnsignedByte fragment from an InputStream.

Throws:
XmlException
IOException

parse

public static XmlUnsignedByte parse(Reader r)
                             throws XmlException,
                                    IOException
Parses a XmlUnsignedByte fragment from a Reader.

Throws:
XmlException
IOException

parse

public static XmlUnsignedByte parse(Reader r,
                                    XmlOptions options)
                             throws XmlException,
                                    IOException
Parses a XmlUnsignedByte fragment from a Reader.

Throws:
XmlException
IOException

parse

public static XmlUnsignedByte parse(Node node)
                             throws XmlException
Parses a XmlUnsignedByte fragment from a DOM Node.

Throws:
XmlException

parse

public static XmlUnsignedByte parse(Node node,
                                    XmlOptions options)
                             throws XmlException
Parses a XmlUnsignedByte fragment from a DOM Node.

Throws:
XmlException

parse

public static XmlUnsignedByte parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis)
                             throws XmlException,
                                    org.apache.xmlbeans.xml.stream.XMLStreamException
Deprecated. XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.

Parses a XmlUnsignedByte fragment from an XMLInputStream.

Throws:
XmlException
org.apache.xmlbeans.xml.stream.XMLStreamException

parse

public static XmlUnsignedByte parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis,
                                    XmlOptions options)
                             throws XmlException,
                                    org.apache.xmlbeans.xml.stream.XMLStreamException
Deprecated. XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.

Parses a XmlUnsignedByte fragment from an XMLInputStream.

Throws:
XmlException
org.apache.xmlbeans.xml.stream.XMLStreamException

parse

public static XmlUnsignedByte parse(javax.xml.stream.XMLStreamReader xsr)
                             throws XmlException
Parses a XmlUnsignedByte fragment from an XMLStreamReader.

Throws:
XmlException

parse

public static XmlUnsignedByte parse(javax.xml.stream.XMLStreamReader xsr,
                                    XmlOptions options)
                             throws XmlException
Parses a XmlUnsignedByte fragment from an XMLStreamReader.

Throws:
XmlException

newValidatingXMLInputStream

public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis)
                                                                                 throws XmlException,
                                                                                        org.apache.xmlbeans.xml.stream.XMLStreamException
Deprecated. XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.

Returns a validating XMLInputStream.

Throws:
XmlException
org.apache.xmlbeans.xml.stream.XMLStreamException

newValidatingXMLInputStream

public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis,
                                                                                        XmlOptions options)
                                                                                 throws XmlException,
                                                                                        org.apache.xmlbeans.xml.stream.XMLStreamException
Deprecated. XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.

Returns a validating XMLInputStream.

Throws:
XmlException
org.apache.xmlbeans.xml.stream.XMLStreamException