Class CTX.Factory
- java.lang.Object
-
- org.openxmlformats.schemas.spreadsheetml.x2006.main.CTX.Factory
-
- Enclosing interface:
- CTX
public static final class CTX.Factory extends java.lang.Object
A factory class with static methods for creating instances of this type.
-
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static CTX
newInstance()
static CTX
newInstance(XmlOptions options)
static XMLInputStream
newValidatingXMLInputStream(XMLInputStream xis)
Deprecated.static XMLInputStream
newValidatingXMLInputStream(XMLInputStream xis, XmlOptions options)
Deprecated.static CTX
parse(java.io.File file)
static CTX
parse(java.io.File file, XmlOptions options)
static CTX
parse(java.io.InputStream is)
static CTX
parse(java.io.InputStream is, XmlOptions options)
static CTX
parse(java.io.Reader r)
static CTX
parse(java.io.Reader r, XmlOptions options)
static CTX
parse(java.lang.String xmlAsString)
static CTX
parse(java.lang.String xmlAsString, XmlOptions options)
static CTX
parse(java.net.URL u)
static CTX
parse(java.net.URL u, XmlOptions options)
static CTX
parse(javax.xml.stream.XMLStreamReader sr)
static CTX
parse(javax.xml.stream.XMLStreamReader sr, XmlOptions options)
static CTX
parse(XMLInputStream xis)
Deprecated.static CTX
parse(XMLInputStream xis, XmlOptions options)
Deprecated.static CTX
parse(org.w3c.dom.Node node)
static CTX
parse(org.w3c.dom.Node node, XmlOptions options)
-
-
-
Method Detail
-
newInstance
public static CTX newInstance()
-
newInstance
public static CTX newInstance(XmlOptions options)
-
parse
public static CTX parse(java.lang.String xmlAsString) throws XmlException
- Parameters:
xmlAsString
- the string value to parse- Throws:
XmlException
-
parse
public static CTX parse(java.lang.String xmlAsString, XmlOptions options) throws XmlException
- Throws:
XmlException
-
parse
public static CTX parse(java.io.File file) throws XmlException, java.io.IOException
- Parameters:
file
- the file from which to load an xml document- Throws:
XmlException
java.io.IOException
-
parse
public static CTX parse(java.io.File file, XmlOptions options) throws XmlException, java.io.IOException
- Throws:
XmlException
java.io.IOException
-
parse
public static CTX parse(java.net.URL u) throws XmlException, java.io.IOException
- Throws:
XmlException
java.io.IOException
-
parse
public static CTX parse(java.net.URL u, XmlOptions options) throws XmlException, java.io.IOException
- Throws:
XmlException
java.io.IOException
-
parse
public static CTX parse(java.io.InputStream is) throws XmlException, java.io.IOException
- Throws:
XmlException
java.io.IOException
-
parse
public static CTX parse(java.io.InputStream is, XmlOptions options) throws XmlException, java.io.IOException
- Throws:
XmlException
java.io.IOException
-
parse
public static CTX parse(java.io.Reader r) throws XmlException, java.io.IOException
- Throws:
XmlException
java.io.IOException
-
parse
public static CTX parse(java.io.Reader r, XmlOptions options) throws XmlException, java.io.IOException
- Throws:
XmlException
java.io.IOException
-
parse
public static CTX parse(javax.xml.stream.XMLStreamReader sr) throws XmlException
- Throws:
XmlException
-
parse
public static CTX parse(javax.xml.stream.XMLStreamReader sr, XmlOptions options) throws XmlException
- Throws:
XmlException
-
parse
public static CTX parse(org.w3c.dom.Node node) throws XmlException
- Throws:
XmlException
-
parse
public static CTX parse(org.w3c.dom.Node node, XmlOptions options) throws XmlException
- Throws:
XmlException
-
parse
@Deprecated public static CTX parse(XMLInputStream xis) throws XmlException, XMLStreamException
Deprecated.- Throws:
XmlException
XMLStreamException
-
parse
@Deprecated public static CTX parse(XMLInputStream xis, XmlOptions options) throws XmlException, XMLStreamException
Deprecated.- Throws:
XmlException
XMLStreamException
-
newValidatingXMLInputStream
@Deprecated public static XMLInputStream newValidatingXMLInputStream(XMLInputStream xis) throws XmlException, XMLStreamException
Deprecated.- Throws:
XmlException
XMLStreamException
-
newValidatingXMLInputStream
@Deprecated public static XMLInputStream newValidatingXMLInputStream(XMLInputStream xis, XmlOptions options) throws XmlException, XMLStreamException
Deprecated.- Throws:
XmlException
XMLStreamException
-
-