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

io.github.ozzyozbourne.ObjectMapperSingleton Maven / Gradle / Ivy

There is a newer version: 0.4.1
Show newest version
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