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

io.github.serpro69.kfaker.Mapper.kt Maven / Gradle / Ivy

There is a newer version: 2.0.0-rc.7
Show newest version
package io.github.serpro69.kfaker

import com.fasterxml.jackson.databind.ObjectMapper
import com.fasterxml.jackson.module.kotlin.KotlinModule
import java.io.InputStream

internal object Mapper {
    private val mapper = ObjectMapper()

    init {
        mapper.registerModule(KotlinModule.Builder().build())
    }

    fun  readValue(inputStream: InputStream, type: Class): T = mapper.readerFor(type).readValue(inputStream)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy