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/sax/SAXFeature.java
/* * Copyright (c) 2004- Tatu Saloranta, tatu.saloranta@iki.fi * * Licensed under the License specified in file LICENSE, included with * the source code. * You may not use this file except in compliance with the License. * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.ctc.wstx.sax; import java.util.HashMap; import javax.xml.XMLConstants; /** * Type safe (pre-Java5) enumeration for listing all currently (SAX 2.0.2) * defined standard features */ public final class SAXFeature { /** * Since all standard features have same URI prefix, let's separate * that prefix, from unique remainder of the feature URIs. */ public final static String STD_FEATURE_PREFIX = "http://xml.org/sax/features/"; final static HashMap <String,SAXFeature>sInstances = new HashMap<String,SAXFeature>(); // // // "Enum" values: final static SAXFeature EXTERNAL_GENERAL_ENTITIES = new SAXFeature("external-general-entities"); final static SAXFeature EXTERNAL_PARAMETER_ENTITIES = new SAXFeature("external-parameter-entities"); final static SAXFeature IS_STANDALONE = new SAXFeature("is-standalone"); final static SAXFeature LEXICAL_HANDLER_PARAMETER_ENTITIES = new SAXFeature("lexical-handler/parameter-entities"); final static SAXFeature NAMESPACES = new SAXFeature("namespaces"); final static SAXFeature NAMESPACE_PREFIXES = new SAXFeature("namespace-prefixes"); final static SAXFeature RESOLVE_DTD_URIS = new SAXFeature("resolve-dtd-uris"); final static SAXFeature STRING_INTERNING = new SAXFeature("string-interning"); final static SAXFeature UNICODE_NORMALIZATION_CHECKING = new SAXFeature("unicode-normalization-checking"); final static SAXFeature USE_ATTRIBUTES2 = new SAXFeature("use-attributes2"); final static SAXFeature USE_LOCATOR2 = new SAXFeature("use-locator2"); final static SAXFeature USE_ENTITY_RESOLVER2 = new SAXFeature("use-entity-resolver2"); final static SAXFeature VALIDATION = new SAXFeature("validation"); final static SAXFeature XMLNS_URIS = new SAXFeature("xmlns-uris"); final static SAXFeature XML_1_1 = new SAXFeature("xml-1.1"); // since 5.3.0 final static SAXFeature JDK_SECURE_PROCESSING = new SAXFeature(XMLConstants.FEATURE_SECURE_PROCESSING); private final String mSuffix; private SAXFeature(String suffix) { mSuffix = suffix; sInstances.put(suffix, this); } public static SAXFeature findByUri(String uri) { if (uri.startsWith(STD_FEATURE_PREFIX)) { return findBySuffix(uri.substring(STD_FEATURE_PREFIX.length())); } return findBySuffix(uri); } public static SAXFeature findBySuffix(String suffix) { return sInstances.get(suffix); } public String getSuffix() { return mSuffix; } @Override public String toString() { return STD_FEATURE_PREFIX + mSuffix; } }
⏎ com/ctc/wstx/sax/SAXFeature.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, 26760👍, 0💬
Popular Posts:
The Jakarta-ORO Java classes are a set of text-processing Java classes that provide Perl5 compatible...
What Is commons-collections4-4.4 .jar?commons-collections4-4.4 .jaris the JAR file for Apache Common...
How to merge two JAR files with "jar" commands? I am tired of specifying multiple JAR files in the c...
How to compare performances of various XML parsers with the jaxp\SourceValidator.jav aprovided in th...
JDK 11 jdk.xml.dom.jmod is the JMOD file for JDK 11 XML DOM module. JDK 11 XML DOM module compiled c...