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:
Jackson Data Binding Source Code
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java".
Jackson Databind Source Code files are provided in the source packge (jackson-databind-2.14.0-sources.jar). You can download it at Jackson Maven Website.
You can also browse Jackson Databind Source Code below:
✍: FYIcenter.com
⏎ com/fasterxml/jackson/databind/cfg/ConfigOverride.java
package com.fasterxml.jackson.databind.cfg; import com.fasterxml.jackson.annotation.JsonAutoDetect; import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonSetter; /** * Configuration object that is accessed by databinding functionality * to find overrides to configuration of properties, based on declared * type of the property. Such overrides have precedence over annotations * attached to actual type ({@link java.lang.Class}), but can be further * overridden by annotations attached to the property itself. * * @since 2.8 */ public abstract class ConfigOverride { /** * Definitions of format overrides, if any. */ protected JsonFormat.Value _format; /** * Definitions of inclusion defaults to use for properties included in this POJO type. * Overrides global defaults, may be overridden by per-property-type (see * {@link #_includeAsProperty}) and per-property overrides (annotations). */ protected JsonInclude.Value _include; /** * Definitions of inclusion defaults for properties of this specified type (regardless * of POJO in which they are included). * Overrides global defaults, per-POJO inclusion defaults (see {#link {@link #_include}}), * may be overridden by per-property overrides. * * @since 2.9 */ protected JsonInclude.Value _includeAsProperty; /** * Definitions of property ignoral (whether to serialize, deserialize * given logical property) overrides, if any. */ protected JsonIgnoreProperties.Value _ignorals; /** * Definitions of setter overrides regarding null handling * * @since 2.9 */ protected JsonSetter.Value _setterInfo; /** * Overrides for auto-detection visibility rules for this type. * * @since 2.9 */ protected JsonAutoDetect.Value _visibility; /** * Flag that indicates whether "is ignorable type" is specified for this type; * and if so, is it to be ignored (true) or not ignored (false); `null` is * used to indicate "not specified", in which case other configuration (class * annotation) is used. */ protected Boolean _isIgnoredType; /** * Flag that indicates whether properties of this type default to being merged * or not. */ protected Boolean _mergeable; protected ConfigOverride() { } protected ConfigOverride(ConfigOverride src) { _format = src._format; _include = src._include; _includeAsProperty = src._includeAsProperty; _ignorals = src._ignorals; _setterInfo = src._setterInfo; _visibility = src._visibility; _isIgnoredType = src._isIgnoredType; _mergeable = src._mergeable; } /** * Accessor for immutable "empty" instance that has no configuration overrides defined. * * @since 2.9 */ public static ConfigOverride empty() { return Empty.INSTANCE; } public JsonFormat.Value getFormat() { return _format; } public JsonInclude.Value getInclude() { return _include; } /** * @since 2.9 */ public JsonInclude.Value getIncludeAsProperty() { return _includeAsProperty; } public JsonIgnoreProperties.Value getIgnorals() { return _ignorals; } public Boolean getIsIgnoredType() { return _isIgnoredType; } /** * @since 2.9 */ public JsonSetter.Value getSetterInfo() { return _setterInfo; } /** * @since 2.9 */ public JsonAutoDetect.Value getVisibility() { return _visibility; } /** * @since 2.9 */ public Boolean getMergeable() { return _mergeable; } /** * Implementation used solely for "empty" instance; has no mutators * and is not changed by core functionality. * * @since 2.9 */ final static class Empty extends ConfigOverride { final static Empty INSTANCE = new Empty(); private Empty() { } } }
⏎ com/fasterxml/jackson/databind/cfg/ConfigOverride.java
Or download all of them as a single archive file:
File name: jackson-databind-2.14.0-sources.jar File size: 1187952 bytes Release date: 2022-11-05 Download
⇒ Jackson Annotations Source Code
⇐ Download and Install Jackson Binary Package
2022-03-29, 109420👍, 0💬
Popular Posts:
How to perform XML Schema validation with sax\Writer.java provided in the Apache Xerces package? You...
How to run "jar" command from JDK tools.jar file? "jar" is the JAR (Java Archive) file management co...
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 is the sax\Writer.java provided in the Apache Xerces package? I have Apache Xerces 2.11.0 insta...
Smack is an Open Source XMPP (Jabber) client library for instant messaging and presence. A pure Java...