io.github.ozzyozbourne.ObjectMapperSingleton Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdwr Show documentation
Show all versions of rdwr Show documentation
Toml, Yaml, CSV, Json, Xml and Property format readers and writers
package io.github.ozzyozbourne;
import com.fasterxml.jackson.databind.ObjectMapper;
enum ObjectMapperSingleton {
INSTANCE(config());
final ObjectMapper objectMapper;
ObjectMapperSingleton(final ObjectMapper objectMapper) {
this.objectMapper = objectMapper;
}
private static ObjectMapper config(){
return new ObjectMapper();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy