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/JavaType.java
package com.fasterxml.jackson.databind; import java.lang.reflect.Modifier; import java.util.List; import com.fasterxml.jackson.core.type.ResolvedType; import com.fasterxml.jackson.databind.type.TypeBindings; import com.fasterxml.jackson.databind.type.TypeFactory; import com.fasterxml.jackson.databind.util.ClassUtil; /** * Base class for type token classes used both to contain information * and as keys for deserializers. *<p> * Instances can (only) be constructed by * <code>com.fasterxml.jackson.databind.type.TypeFactory</code>. *<p> * Since 2.2 this implements {@link java.lang.reflect.Type} to allow * it to be pushed through interfaces that only expose that type. */ public abstract class JavaType extends ResolvedType implements java.io.Serializable, // 2.1 java.lang.reflect.Type // 2.2 { private static final long serialVersionUID = 1; /** * This is the nominal type-erased Class that would be close to the * type represented (but not exactly type, due to type erasure: type * instance may have more information on this). * May be an interface or abstract class, so instantiation * may not be possible. */ protected final Class<?> _class; protected final int _hash; /** * Optional handler (codec) that can be attached to indicate * what to use for handling (serializing, deserializing) values of * this specific type. *<p> * Note: untyped (i.e. caller has to cast) because it is used for * different kinds of handlers, with unrelated types. */ protected final Object _valueHandler; /** * Optional handler that can be attached to indicate how to handle * additional type metadata associated with this type. *<p> * Note: untyped (i.e. caller has to cast) because it is used for * different kinds of handlers, with unrelated types. */ protected final Object _typeHandler; /** * Whether entities defined with this type should be handled using * static typing (as opposed to dynamic runtime type) or not. * * @since 2.2 */ protected final boolean _asStatic; /* /********************************************************************** /* Life-cycle: constructors, public mutant factory methods /********************************************************************** */ /** * Main base constructor for sub-classes to use * * @param raw "Raw" (type-erased) class for this type * @param additionalHash Additional hash code to use, in addition * to hash code of the class name * @param valueHandler internal handler (serializer/deserializer) * to apply for this type * @param typeHandler internal type handler (type serializer/deserializer) * to apply for this type * @param asStatic Whether this type declaration will force specific type * as opposed to being a base type (usually for serialization typing) */ protected JavaType(Class<?> raw, int additionalHash, Object valueHandler, Object typeHandler, boolean asStatic) { _class = raw; _hash = raw.getName().hashCode() + additionalHash; _valueHandler = valueHandler; _typeHandler = typeHandler; _asStatic = asStatic; } /** * Copy-constructor used when refining/upgrading type instances. * * @since 2.7 */ protected JavaType(JavaType base) { _class = base._class; _hash = base._hash; _valueHandler = base._valueHandler; _typeHandler = base._typeHandler; _asStatic = base._asStatic; } /** * Mutant factory method that may be called on structured types * that have a so-called content type (element of arrays, value type * of Maps, referenced type of referential types), * and will construct a new instance that is identical to * this instance, except that it has specified content type, instead of current * one. If content type is already set to given type, <code>this</code> is returned. * If type does not have a content type (which is the case with * <code>SimpleType</code>), {@link IllegalArgumentException} * will be thrown. * * @return Newly created type instance * * @since 2.7 */ public abstract JavaType withContentType(JavaType contentType); /** * Method that can be called to get a type instance that indicates * that values of the type should be handled using "static typing" for purposes * of serialization (as opposed to "dynamic" aka runtime typing): * meaning that no runtime information is needed for determining serializers to use. * The main use case is to allow forcing of specific root value serialization type, * and specifically in resolving serializers for contained types (element types * for arrays, Collections and Maps). * * @since 2.2 */ public abstract JavaType withStaticTyping(); /* /********************************************************************** /* Internal factory methods for Jackson-databind (not for users) /********************************************************************** */ /** * Internal method that <b>should not be used by any code outside of * jackson-databind</b>: only used internally by databind. * May be removed from Jackson 3.0. *<p> * This mutant factory method will construct a new instance that is identical to * this instance, except that it will have specified type handler assigned. * * @param h Handler to pass to new instance created * @return Newly created type instance with same type information, specified handler */ public abstract JavaType withTypeHandler(Object h); /** * Internal method that <b>should not be used by any code outside of * jackson-databind</b>: only used internally by databind. * May be removed from Jackson 3.0. *<p> * This mutant factory method will construct a new instance that is identical to * this instance, except that it will have specified content type (element type * for arrays, value type for Maps and so forth) handler assigned. * * @param h Handler to pass to new instance created * @return Newly created type instance with same type information, specified handler */ public abstract JavaType withContentTypeHandler(Object h); /** * Internal method that <b>should not be used by any code outside of * jackson-databind</b>: only used internally by databind. * May be removed from Jackson 3.0. *<p> * This mutant factory method will construct a new instance that is identical to * this instance, except that it will have specified value handler assigned. * * @param h Handler to pass to new instance created * @return Newly created type instance with same type information, specified handler */ public abstract JavaType withValueHandler(Object h); /** * Internal method that <b>should not be used by any code outside of * jackson-databind</b>: only used internally by databind. * May be removed from Jackson 3.0. *<p> * Mutant factory method that will construct a new instance that is identical to * this instance, except that it will have specified content value handler assigned. * * @param h Handler to pass to new instance created * @return Newly created type instance with same type information, specified handler */ public abstract JavaType withContentValueHandler(Object h); /** * Internal method that <b>should not be used by any code outside of * jackson-databind</b>: only used internally by databind. * May be removed from Jackson 3.0. *<p> * Mutant factory method that will try to copy handlers that the specified * source type instance had, if any; this must be done recursively where * necessary (as content types may be structured). * * @since 2.8.4 */ public JavaType withHandlersFrom(JavaType src) { JavaType type = this; Object h = src.getTypeHandler(); if (h != _typeHandler) { type = type.withTypeHandler(h); } h = src.getValueHandler(); if (h != _valueHandler) { type = type.withValueHandler(h); } return type; } /* /********************************************************************** /* Type coercion fluent factory methods /********************************************************************** */ /** * Mutant factory method that will try to create and return a sub-type instance * for known parameterized types; for other types will return `null` to indicate * that no just refinement makes necessary sense, without trying to detect * special status through implemented interfaces. * * @since 2.7 */ public abstract JavaType refine(Class<?> rawType, TypeBindings bindings, JavaType superClass, JavaType[] superInterfaces); /** * Legacy method used for forcing sub-typing of this type into * type specified by specific type erasure. * Deprecated as of 2.7 as such specializations really ought to * go through {@link TypeFactory}, not directly via {@link JavaType}. * * @since 2.7 */ @Deprecated public JavaType forcedNarrowBy(Class<?> subclass) { if (subclass == _class) { // can still optimize for simple case return this; } return _narrow(subclass); } @Deprecated // since 2.7 protected abstract JavaType _narrow(Class<?> subclass); /* /********************************************************************** /* Implementation of ResolvedType API /********************************************************************** */ @Override public final Class<?> getRawClass() { return _class; } /** * Method that can be used to check whether this type has * specified Class as its type erasure. Put another way, returns * true if instantiation of this Type is given (type-erased) Class. */ @Override public final boolean hasRawClass(Class<?> clz) { return _class == clz; } /** * Accessor that allows determining whether {@link #getContentType()} should * return a non-null value (that is, there is a "content type") or not. * True if {@link #isContainerType()} or {@link #isReferenceType()} return true. * * @since 2.8 */ public boolean hasContentType() { return true; } /** * @since 2.6 */ public final boolean isTypeOrSubTypeOf(Class<?> clz) { return (_class == clz) || clz.isAssignableFrom(_class); } /** * @since 2.9 */ public final boolean isTypeOrSuperTypeOf(Class<?> clz) { return (_class == clz) || _class.isAssignableFrom(clz); } @Override public boolean isAbstract() { return Modifier.isAbstract(_class.getModifiers()); } /** * Convenience method for checking whether underlying Java type * is a concrete class or not: abstract classes and interfaces * are not. */ @Override public boolean isConcrete() { int mod = _class.getModifiers(); if ((mod & (Modifier.INTERFACE | Modifier.ABSTRACT)) == 0) { return true; } /* 19-Feb-2010, tatus: Holy mackarel; primitive types * have 'abstract' flag set... */ return _class.isPrimitive(); } @Override public boolean isThrowable() { return Throwable.class.isAssignableFrom(_class); } @Override public boolean isArrayType() { return false; } /** * Method that basically does equivalent of: *<pre> * Enum.class.isAssignableFrom(getRawClass()) *</pre> * that is, return {@code true} if the underlying type erased class is {@code Enum} * or one its subtypes (Enum implementations). */ @Override public final boolean isEnumType() { // 29-Sep-2019, tatu: `Class.isEnum()` not enough to detect custom subtypes. return ClassUtil.isEnumType(_class); } /** * Similar to {@link #isEnumType} except does NOT return {@code true} * for {@link java.lang.Enum} (since that is not Enum implementation type). * * @since 2.11 */ public final boolean isEnumImplType() { return ClassUtil.isEnumType(_class) && (_class != Enum.class); } /** * @since 2.12 */ public final boolean isRecordType() { return ClassUtil.isRecordType(_class); } @Override public final boolean isInterface() { return _class.isInterface(); } @Override public final boolean isPrimitive() { return _class.isPrimitive(); } @Override public final boolean isFinal() { return Modifier.isFinal(_class.getModifiers()); } /** * @return True if type represented is a container type; this includes * array, Map and Collection types. */ @Override public abstract boolean isContainerType(); /** * @return True if type is either true {@link java.util.Collection} type, * or something similar (meaning it has at least one type parameter, * which describes type of contents) */ @Override public boolean isCollectionLikeType() { return false; } /** * @return True if type is either true {@link java.util.Map} type, * or something similar (meaning it has at least two type parameter; * first one describing key type, second value type) */ @Override public boolean isMapLikeType() { return false; } /** * Convenience method, short-hand for *<code> * getRawClass() == Object.class *</code> * and used to figure if we basically have "untyped" type object. * * @since 2.5 */ public final boolean isJavaLangObject() { return _class == Object.class; } /** * Accessor for checking whether handlers for dealing with values of * this type should use static typing (as opposed to dynamic typing). * Note that while value of 'true' does mean that static typing is to * be used, value of 'false' may still be overridden by other settings. * * @since 2.2 */ public final boolean useStaticType() { return _asStatic; } /* /********************************************************************** /* Public API, type parameter access; pass-through /********************************************************************** */ @Override public boolean hasGenericTypes() { return containedTypeCount() > 0; } @Override public JavaType getKeyType() { return null; } @Override public JavaType getContentType() { return null; } @Override // since 2.6 public JavaType getReferencedType() { return null; } @Override public abstract int containedTypeCount(); @Override public abstract JavaType containedType(int index); @Deprecated // since 2.7 @Override public abstract String containedTypeName(int index); @Deprecated // since 2.7 @Override public Class<?> getParameterSource() { return null; } /* /********************************************************************** /* Extended API beyond ResolvedType /********************************************************************** */ // NOTE: not defined in Resolved type /** * Convenience method that is functionally same as: *<code> * JavaType t = containedType(index); * if (t == null) { * t = TypeFactory.unknownType(); * } *</code> * and typically used to eliminate need for null checks for common case * where we just want to check if containedType is available first; and * if not, use "unknown type" (which translates to <code>java.lang.Object</code> * basically). * * @since 2.5 */ public JavaType containedTypeOrUnknown(int index) { JavaType t = containedType(index); return (t == null) ? TypeFactory.unknownType() : t; } /** * @since 2.7 */ public abstract TypeBindings getBindings(); /** * Method that may be called to find representation of given type * within type hierarchy of this type: either this type (if this * type has given erased type), one of its supertypes that has the * erased types, or null if target is neither this type or any of its * supertypes. * * @since 2.7 */ public abstract JavaType findSuperType(Class<?> erasedTarget); /** * Accessor for finding fully resolved parent class of this type, * if it has one; null if not. * * @since 2.7 */ public abstract JavaType getSuperClass(); /** * Accessor for finding fully resolved interfaces this type implements, * if any; empty array if none. * * @since 2.7 */ public abstract List<JavaType> getInterfaces(); /** * Method that may be used to find paramaterization this type has for * given type-erased generic target type. * * @since 2.7 */ public abstract JavaType[] findTypeParameters(Class<?> expType); /* /********************************************************************** /* Internal accessors API, accessing handlers /********************************************************************** */ /** * Internal accessor that <b>should not be used by any code outside of * jackson-databind</b>: only used internally by databind. * May be removed from Jackson 3.0. * * @return Value handler associated with this type, if any. */ @SuppressWarnings("unchecked") public <T> T getValueHandler() { return (T) _valueHandler; } /** * Internal accessor that <b>should not be used by any code outside of * jackson-databind</b>: only used internally by databind. * May be removed from Jackson 3.0. * * @return Type handler associated with this type, if any. */ @SuppressWarnings("unchecked") public <T> T getTypeHandler() { return (T) _typeHandler; } /** * Internal accessor that <b>should not be used by any code outside of * jackson-databind</b>: only used internally by databind. * May be removed from Jackson 3.0. * * @return Content value handler associated with this type, if any. * * @since 2.7 */ public Object getContentValueHandler() { return null; } /** * Internal accessor that <b>should not be used by any code outside of * jackson-databind</b>: only used internally by databind. * May be removed from Jackson 3.0. * * @return Content type handler associated with this type, if any. * * @since 2.7 */ public Object getContentTypeHandler() { return null; } /** * @since 2.6 */ public boolean hasValueHandler() { return _valueHandler != null; } /** * Helper method that checks whether this type, or its (optional) key * or content type has {@link #getValueHandler} or {@link #getTypeHandler()}; * that is, are there any non-standard handlers associated with this * type object. * * @since 2.8 */ public boolean hasHandlers() { return (_typeHandler != null) || (_valueHandler != null); } /* /********************************************************************** /* Support for producing signatures /********************************************************************** */ //public abstract String toCanonical(); /** * Method for accessing signature that contains generic * type information, in form compatible with JVM 1.5 * as per JLS. It is a superset of {@link #getErasedSignature}, * in that generic information can be automatically removed * if necessary (just remove outermost * angle brackets along with content inside) */ public String getGenericSignature() { StringBuilder sb = new StringBuilder(40); getGenericSignature(sb); return sb.toString(); } /** * * @param sb StringBuilder to append signature to * * @return StringBuilder that was passed in; returned to allow * call chaining */ public abstract StringBuilder getGenericSignature(StringBuilder sb); /** * Method for accessing signature without generic * type information, in form compatible with all versions * of JVM, and specifically used for type descriptions * when generating byte code. */ public String getErasedSignature() { StringBuilder sb = new StringBuilder(40); getErasedSignature(sb); return sb.toString(); } /** * Method for accessing signature without generic * type information, in form compatible with all versions * of JVM, and specifically used for type descriptions * when generating byte code. * * @param sb StringBuilder to append signature to * * @return StringBuilder that was passed in; returned to allow * call chaining */ public abstract StringBuilder getErasedSignature(StringBuilder sb); /* /********************************************************************** /* Standard methods; let's make them abstract to force override /********************************************************************** */ @Override public abstract String toString(); @Override public abstract boolean equals(Object o); @Override public final int hashCode() { return _hash; } }
⏎ com/fasterxml/jackson/databind/JavaType.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, 67730👍, 0💬
Popular Posts:
What Is commons-logging-1.2.jar? commons-logging-1.2.jar is the JAR file for Apache Commons Logging ...
Jaxen, Release 1.1.1, is an open source XPath library written in Java. It is adaptable to many diffe...
What Is poi-ooxml-3.5.jar? poi-ooxml-3.5.jar is one of the JAR files for Apache POI 3.5, which provi...
What Is log4j-1.2.15.jar? I got the JAR file from apache-log4j-1.2.15.zip. log4j-1.2.15.jar is the v...
JDK 1.1 source code directory contains Java source code for JDK 1.1 core classes: "C:\fyicenter\jdk-...