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:
Jackson Annotations Source Code
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java".
Jackson Annotations Source Code files are provided in the source packge (jackson-annotations-2.14.0-sources.jar). You can download it at Jackson Maven Website.
You can also browse Jackson Annotations Source Code below:
✍: FYIcenter.com
⏎ com/fasterxml/jackson/annotation/ObjectIdGenerator.java
package com.fasterxml.jackson.annotation; /** * Definition of API used for constructing Object Identifiers * (as annotated using {@link JsonIdentityInfo}). * Also defines factory methods used for creating instances * for serialization, deserialization. * * @param <T> Type of Object Identifiers produced. */ @SuppressWarnings("serial") public abstract class ObjectIdGenerator<T> implements java.io.Serializable { /* /********************************************************** /* Accessors /********************************************************** */ public abstract Class<?> getScope(); /** * Method called to check whether this generator instance can * be used for Object Ids of specific generator type and * scope; determination is based by passing a configured * "blueprint" (prototype) instance; from which the actual * instances are created (using {@link #newForSerialization}). * * @return True if this instance can be used as-is; false if not */ public abstract boolean canUseFor(ObjectIdGenerator<?> gen); /** * Accessor that needs to be overridden to return <code>true</code> * if the Object Id may be serialized as JSON Object; used by, for example, * JSOG handling. * The reason accessor is needed is that handling such Object Ids is * more complex and may incur additional buffering or performance overhead, * avoiding of which makes sense for common case of scalar object ids * (or native object ids some formats support). *<p> * Default implementation returns <code>false</code>, so needs to be overridden * by Object-producing generators. * * @since 2.5 */ public boolean maySerializeAsObject() { return false; } /** * Accessor that may be called (after verifying (via {@link #maySerializeAsObject()}) * whether given name * * @param name Name of property to check * @param parser Parser that points to property name, in case generator needs * further verification (note: untyped, because <code>JsonParser</code> is defined * in `jackson-core`, and this package does not depend on it). * * @since 2.5 */ public boolean isValidReferencePropertyName(String name, Object parser) { return false; } /* /********************************************************** /* Factory methods /********************************************************** */ /** * Factory method to create a blueprint instance for specified * scope. Generators that do not use scope may return 'this'. */ public abstract ObjectIdGenerator<T> forScope(Class<?> scope); /** * Factory method called to create a new instance to use for * serialization: needed since generators may have state * (next id to produce). *<p> * Note that actual type of 'context' is * <code>com.fasterxml.jackson.databind.SerializerProvider</code>, * but can not be declared here as type itself (as well as call * to this object) comes from databind package. * * @param context Serialization context object used (of type * <code>com.fasterxml.jackson.databind.SerializerProvider</code>); * may be needed by more complex generators to access contextual * information such as configuration. */ public abstract ObjectIdGenerator<T> newForSerialization(Object context); /** * Method for constructing key to use for ObjectId-to-POJO maps. */ public abstract IdKey key(Object key); /* /********************************************************** /* Methods for serialization /********************************************************** */ /** * Method used for generating a new Object Identifier to serialize * for given POJO. * * @param forPojo POJO for which identifier is needed * * @return Object Identifier to use. */ public abstract T generateId(Object forPojo); /* /********************************************************** /* Helper classes /********************************************************** */ /** * Simple key class that can be used as a key for * ObjectId-to-POJO mappings, when multiple ObjectId types * and scopes are used. */ public final static class IdKey implements java.io.Serializable { private static final long serialVersionUID = 1L; /** * Type of {@link ObjectIdGenerator} used for generating Object Id */ public final Class<?> type; /** * Scope of the Object Id (may be null, to denote global) */ public final Class<?> scope; /** * Object for which Object Id was generated: can NOT be null. */ public final Object key; private final int hashCode; public IdKey(Class<?> type, Class<?> scope, Object key) { if (key == null) { throw new IllegalArgumentException("Can not construct IdKey for null key"); } this.type = type; this.scope = scope; this.key = key; int h = key.hashCode() + type.getName().hashCode(); if (scope != null) { h ^= scope.getName().hashCode(); } hashCode = h; } @Override public int hashCode() { return hashCode; } @Override public boolean equals(Object o) { if (o == this) return true; if (o == null) return false; if (o.getClass() != getClass()) return false; IdKey other = (IdKey) o; return (other.key.equals(key)) && (other.type == type) && (other.scope == scope); } @Override public String toString() { return String.format("[ObjectId: key=%s, type=%s, scope=%s]", key, (type == null) ? "NONE" : type.getName(), (scope == null) ? "NONE" : scope.getName()); } } }
⏎ com/fasterxml/jackson/annotation/ObjectIdGenerator.java
Or download all of them as a single archive file:
File name: jackson-annotations-2.14.0-sources.jar File size: 80402 bytes Release date: 2022-11-05 Download
⇒ Jackson Dataformat Extensions
⇐ Jackson Data Binding Source Code
2022-02-19, ≈80🔥, 0💬
Popular Posts:
iText is an ideal library for developers looking to enhance web- and other applications with dynamic...
JDK 17 jdk.jfr.jmod is the JMOD file for JDK 17 JFR module. JDK 17 JFR module compiled class files a...
The Jakarta-ORO Java classes are a set of text-processing Java classes that provide Perl5 compatible...
commons-fileupload-1.3.3 -sources.jaris the source JAR file for Apache Commons FileUpload 1.3., whic...
Woodstox 6.4.0 Source Code Files are provided at the Woodstox GitHub Website . You can download them...