Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
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 (322)
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, ≈51🔥, 0💬
Popular Posts:
Apache Ant is a Java-based build tool. In theory, it is kind of like make, without make's wrinkles. ...
JDK 11 java.base.jmod is the JMOD file for JDK 11 Base module. JDK 11 Base module compiled class fil...
JDK 11 jdk.scripting.nashorn.jm odis the JMOD file for JDK 11 Scripting Nashorn module. JDK 11 Scrip...
JDK 17 jdk.charsets.jmod is the JMOD file for JDK 17 Charsets module. JDK 17 Charsets module compile...
jTDS JDBC Driver Source Code Files are provided in the source package file, jtds-1.3.1-fyi.zip. You ...