All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fasterxml.jackson.databind.ext.Java7Handlers Maven / Gradle / Ivy

Go to download

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

There is a newer version: 3.40.2
Show newest version
package com.fasterxml.jackson.databind.ext;

import com.fasterxml.jackson.databind.JsonDeserializer;
import com.fasterxml.jackson.databind.JsonSerializer;

/**
 * Since v2.15, {@link Java7HandlersImpl} is no longer loaded via reflection.
 * 

* Prior to v2.15, this class supported Java7-incomplete platforms, specifically * platforms that do not support {@link java.nio.file.Path}. *

* * @since 2.10 (cleaved off of {@link Java7Support}) */ public abstract class Java7Handlers { private final static Java7Handlers IMPL = new Java7HandlersImpl(); public static Java7Handlers instance() { return IMPL; } public abstract Class getClassJavaNioFilePath(); public abstract JsonDeserializer getDeserializerForJavaNioFilePath(Class rawType); public abstract JsonSerializer getSerializerForJavaNioFilePath(Class rawType); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy