com.skillw.pouvoir.util.GsonUtil.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Pouvoir Show documentation
Show all versions of Pouvoir Show documentation
Bukkit Script Engine Plugin.
package com.skillw.pouvoir.util
import com.google.gson.Gson
import com.google.gson.GsonBuilder
/**
* Gson工具类
*
* @constructor Create empty Gson utils
*/
val gson: Gson by lazy {
GsonBuilder().serializeNulls().create()
}
inline fun T.encodeJson(): String {
return gson.toJson(this)
}
inline fun String.decodeFromString(): T? {
return gson.fromJson(this, T::class.java)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy