org.apache.xmlbeans
Class XmlDateTime.Factory

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

public static final class XmlDateTime.Factory
extends Object

A class with methods for creating instances of XmlDateTime.


Method Summary
static XmlDateTime newInstance()
          Creates an empty instance of XmlDateTime
static XmlDateTime newInstance(XmlOptions options)
          Creates an empty instance of XmlDateTime
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 XmlDateTime newValue(Object obj)
          Creates an immutable XmlDateTime value
static XmlDateTime parse(File f)
          Parses a XmlDateTime fragment from a File.
static XmlDateTime parse(File f, XmlOptions options)
          Parses a XmlDateTime fragment from a File.
static XmlDateTime parse(InputStream is)
          Parses a XmlDateTime fragment from an InputStream.
static XmlDateTime parse(InputStream is, XmlOptions options)
          Parses a XmlDateTime fragment from an InputStream.
static XmlDateTime parse(Node node)
          Parses a XmlDateTime fragment from a DOM Node.
static XmlDateTime parse(Node node, XmlOptions options)
          Parses a XmlDateTime fragment from a DOM Node.
static XmlDateTime parse(Reader r)
          Parses a XmlDateTime fragment from a Reader.
static XmlDateTime parse(Reader r, XmlOptions options)
          Parses a XmlDateTime fragment from a Reader.
static XmlDateTime parse(String s)
          Parses a XmlDateTime fragment from a String.
static XmlDateTime parse(String s, XmlOptions options)
          Parses a XmlDateTime fragment from a String.
static XmlDateTime parse(URL u)
          Parses a XmlDateTime fragment from a URL.
static XmlDateTime parse(URL u, XmlOptions options)
          Parses a XmlDateTime fragment from a URL.
static XmlDateTime parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis)
          Deprecated. XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.
static XmlDateTime parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, XmlOptions options)
          Deprecated. XMLInputStream was deprecated by XMLStreamReader from STaX - jsr173 API.
static XmlDateTime parse(javax.xml.stream.XMLStreamReader xsr)
          Parses a XmlDateTime fragment from an XMLStreamReader.
static XmlDateTime parse(javax.xml.stream.XMLStreamReader xsr, XmlOptions options)
          Parses a XmlDateTime 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 XmlDateTime newInstance()
Creates an empty instance of XmlDateTime


newInstance

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


newValue

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


parse

public static XmlDateTime parse(String s)
                         throws XmlException
Parses a XmlDateTime fragment from a String. For example: "<xml-fragment>2003-06-14T12:00:00</xml-fragment>".

Throws:
XmlException

parse

public static XmlDateTime parse(String s,
                                XmlOptions options)
                         throws XmlException
Parses a XmlDateTime fragment from a String. For example: "<xml-fragment>2003-06-14T12:00:00</xml-fragment>".

Throws:
XmlException

parse

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

Throws:
XmlException
IOException

parse

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

Throws:
XmlException
IOException

parse

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

Throws:
XmlException
IOException

parse

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

Throws:
XmlException
IOException

parse

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

Throws:
XmlException
IOException

parse

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

Throws:
XmlException
IOException

parse

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

Throws:
XmlException
IOException

parse

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

Throws:
XmlException
IOException

parse

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

Throws:
XmlException

parse

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

Throws:
XmlException

parse

public static XmlDateTime 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 XmlDateTime fragment from an XMLInputStream.

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

parse

public static XmlDateTime 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 XmlDateTime fragment from an XMLInputStream.

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

parse

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

Throws:
XmlException

parse

public static XmlDateTime parse(javax.xml.stream.XMLStreamReader xsr,
                                XmlOptions options)
                         throws XmlException
Parses a XmlDateTime 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