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

org.enodeframework.common.serializing.SerializeService.kt Maven / Gradle / Ivy

package org.enodeframework.common.serializing

interface SerializeService {
    /**
     * deserialize the value to given type
     */
    fun  deserialize(value: String, type: Class): T

    /**
     * serialize the value to string
     */
    fun serialize(target: Any): String
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy