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

gsonpath.adapter.enums.EnumAdapterProperties.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.enums

import com.squareup.javapoet.ClassName

data class EnumAdapterProperties(
        val enumTypeName: ClassName,
        val fields: List,
        val defaultValue: EnumField?
) {
    data class EnumField(
            val enumValueTypeName: ClassName,
            val label: String
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy