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, ≈45🔥, 0💬
Popular Posts:
What Is mail.jar of JavaMail 1.3? I got the JAR file from javamail-1_3.zip. mail.jar in javamail-1_3...
How to download and install ojdbc6.jar for Oracle 11g R2? ojdbc6.jar for Oracle 11g R2 is a Java 6, ...
JLayer is a library that decodes/plays/converts MPEG 1/2/2.5 Layer 1/2/3 (i.e. MP3) in real time for...
What JAR files are required to run dom\Counter.java provided in the Apache Xerces package? You can f...
How to download and install ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is a Java 5 J...