com.fasterxml.jackson.databind.cfg.MutableCoercionConfig 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
The newest version!
package com.fasterxml.jackson.databind.cfg;
import com.fasterxml.jackson.databind.json.JsonMapper;
import com.fasterxml.jackson.databind.type.LogicalType;
import java.util.function.Consumer;
/**
* Mutable version of {@link CoercionConfig} (or rather, extended API)
* exposed during configuration phase of {@link com.fasterxml.jackson.databind.ObjectMapper}
* construction (via {@link JsonMapper#builder()}).
*
* @since 2.12
*/
public class MutableCoercionConfig
extends CoercionConfig
implements java.io.Serializable
{
private static final long serialVersionUID = 1L;
public MutableCoercionConfig() { }
protected MutableCoercionConfig(MutableCoercionConfig src) {
super(src);
}
public MutableCoercionConfig copy() {
return new MutableCoercionConfig(this);
}
/**
* Method to set coercions to target type or class during builder-style mapper construction with
*
* - {@link MapperBuilder#withCoercionConfig(Class, Consumer)},
* - {@link MapperBuilder#withCoercionConfig(LogicalType, Consumer)} and
* - {@link MapperBuilder#withCoercionConfigDefaults(Consumer)}
*
* ... these builder methods. Refrain from using this method outside of builder phase.
*/
public MutableCoercionConfig setCoercion(CoercionInputShape shape,
CoercionAction action) {
_coercionsByShape[shape.ordinal()] = action;
return this;
}
public MutableCoercionConfig setAcceptBlankAsEmpty(Boolean state) {
_acceptBlankAsEmpty = state;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy