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

gsonpath.adapter.util.NullableUtil.kt Maven / Gradle / Ivy

Go to download

An annotation processor which generates Type Adapters for the Google Gson library

The newest version!
package gsonpath.adapter.util

object NullableUtil {
    fun isNullableKeyword(keyword: String): Boolean {
        return arrayOf("NonNull", "Nonnull", "NotNull", "Notnull").contains(keyword)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy