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

gsonpath.model.FieldPath.kt Maven / Gradle / Ivy

Go to download

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

There is a newer version: 4.0.0
Show newest version
package gsonpath.model

sealed class FieldPath {
    data class Standard(val path: String) : FieldPath()
    data class Nested(val path: String) : FieldPath()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy