Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
Other Resources:
Jackson Core Source Code
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java".
Jackson Core Source Code files are provided in the source packge (jackson-core-2.12.4-sources.jar). You can download it at Jackson Maven Website.
You can also browse Jackson Core Source Code below:
✍: FYIcenter.com
⏎ com/fasterxml/jackson/core/StreamWriteCapability.java
package com.fasterxml.jackson.core; import com.fasterxml.jackson.core.util.JacksonFeature; /** * Set of on/off capabilities that a {@link JsonGenerator} for given format * (or in case of buffering, original format) has. * Used in some cases to adjust aspects of things like content conversions and * coercions by format-agnostic functionality. * Specific or expected usage documented by individual capability entry Javadocs. * * @since 2.12 */ public enum StreamWriteCapability implements JacksonFeature { /** * Capability that indicates that the data format is able to express binary * data natively, without using textual encoding like Base64. *<p> * Capability is currently enabled for all binary formats and none of textual * formats. */ CAN_WRITE_BINARY_NATIVELY(false), /** * Capability that indicates that the data format is able to write * "formatted numbers": that is, output of numbers is done as Strings * and caller is allowed to pass in logical number values as Strings. *<p> * Capability is currently enabled for most textual formats and none of binary * formats. */ CAN_WRITE_FORMATTED_NUMBERS(false) ; /** * Whether feature is enabled or disabled by default. */ private final boolean _defaultState; private final int _mask; private StreamWriteCapability(boolean defaultState) { _defaultState = defaultState; _mask = (1 << ordinal()); } @Override public boolean enabledByDefault() { return _defaultState; } @Override public boolean enabledIn(int flags) { return (flags & _mask) != 0; } @Override public int getMask() { return _mask; } }
⏎ com/fasterxml/jackson/core/StreamWriteCapability.java
Â
⇒ Download and Install Jackson Binary Package
⇠What Is Jackson
⇑ Downloading and Reviewing jackson-*.jar
⇑⇑ Jackson - Java JSON library
2016-02-03, 29587👍, 1💬
Popular Posts:
commons-net-1.4.1.jar is the JAR file for Apache Commons Net 1.4.1, which implements the client side...
How to download and install JDK (Java Development Kit) 1.3? If you want to write Java applications, ...
What Is commons-fileupload-1.3.3 .jar?commons-fileupload-1.3.3 .jaris the JAR file for Apache Common...
Apache BCEL Source Code Files are inside the Apache Ant source package file like bcel-6.5.0-src.zip....
maven-compat-3.5.4.jar is the JAR file for Apache Maven 3.5.4 Compact module. The JAR file name may ...