com.fasterxml.jackson.annotation.JacksonAnnotationValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redisson-all Show documentation
Show all versions of redisson-all Show documentation
Easy Redis Java client and Real-Time Data Platform. Valkey compatible. Sync/Async/RxJava3/Reactive API. Client side caching. Over 50 Redis based Java objects and services: JCache API, Apache Tomcat, Hibernate, Spring, Set, Multimap, SortedSet, Map, List, Queue, Deque, Semaphore, Lock, AtomicLong, Map Reduce, Bloom filter, Scheduler, RPC
package com.fasterxml.jackson.annotation;
import java.lang.annotation.Annotation;
/**
* Marker interface used by value classes like {@link JsonFormat.Value} that are used
* to contain information from one of Jackson annotations, and can be directly
* instantiated from those annotations, as well as programmatically constructed
* and possibly merged. The reason for such marker is to allow generic handling of
* some of the annotations, as well as to allow easier injection of configuration
* from sources other than annotations.
*
* @since 2.6
*/
public interface JacksonAnnotationValue
{
/**
* Introspection method that may be used to find actual annotation that may be used
* as the source for value instance.
*
* @return Annotation class for which instances of this value class are created
*/
public Class valueFor();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy