Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
Woodstox 6.4.0 - Source Code Files
Woodstox 6.4.0 Source Code Files are provided at the Woodstox GitHub Website.
You can download them from the "src/main/java" folder.
You can also browse Woodstox Source Code files below:
✍: FYIcenter
⏎ com/ctc/wstx/cfg/XmlConsts.java
package com.ctc.wstx.cfg; /** * Simple constant container interface, shared by input and output * sides. */ public interface XmlConsts { // // // Constants for XML declaration public final static String XML_DECL_KW_ENCODING = "encoding"; public final static String XML_DECL_KW_VERSION = "version"; public final static String XML_DECL_KW_STANDALONE = "standalone"; public final static String XML_V_10_STR = "1.0"; public final static String XML_V_11_STR = "1.1"; /** * This constants refers to cases where the version has not been * declared explicitly; and needs to be considered to be 1.0. */ public final static int XML_V_UNKNOWN = 0x0000; public final static int XML_V_10 = 0x0100; public final static int XML_V_11 = 0x0110; public final static String XML_SA_YES = "yes"; public final static String XML_SA_NO = "no"; // // // Stax specs mandates some settings: but since exact // // // definitions have been re-interpreted a few times, // // // let's isolate them in a single place /* 13-Mar-2008, TSa: As per latest reading of Stax specs, * all of these are expected to be "", not null. */ public final static String ELEM_NO_NS_URI = ""; public final static String ATTR_NO_NS_URI = ""; public final static String ELEM_NO_PREFIX = ""; public final static String ATTR_NO_PREFIX = ""; /** * Top-most namespace URI assigned for root element, if not specifically * defined (default namespace unbound). *<p> * As per Stax specs, related clarifying discussion on * the mailing list, and especially JDK 1.6 definitions * in {@link javax.xml.XMLConstants} constants, <b>empty String</b> * should be used instead of null. */ public final static String DEFAULT_NAMESPACE_URI = ELEM_NO_NS_URI; // // // Well, these are not strictly xml constants, but for // // // now can live here /** * This constant defines the highest Unicode character allowed * in XML content. */ final static int MAX_UNICODE_CHAR = 0x10FFFF; }
⏎ com/ctc/wstx/cfg/XmlConsts.java
Or download all of them as a single archive file:
File name: woodstox-core-6.4.0-fyi.zip File size: 552992 bytes Release date: 2022-10-25 Download
⇒ woodstox-core-6.4.0.jar - Woodstox Core 6.4.0
⇐ What Is Woodstox XML Processing
2023-01-29, 14770👍, 0💬
Popular Posts:
How to run "javac" command from JDK tools.jar file? "javac" is the Java compiler command that allows...
io.jar is a component in iText Java library to provide input/output functionalities. iText Java libr...
GJT (Giant Java Tree) implementation of XML Pull Parser. JAR File Size and Download Location: File n...
Guava is a suite of core and expanded libraries that include utility classes, google's collections, ...
What Is poi-ooxml-3.5.jar? poi-ooxml-3.5.jar is one of the JAR files for Apache POI 3.5, which provi...