gsonpath.generator.interf.InterfaceModelMetadata.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gsonpath-compiler Show documentation
Show all versions of gsonpath-compiler Show documentation
An annotation processor which generates Type Adapters for the Google Gson library
package gsonpath.generator.interf
import com.squareup.javapoet.TypeName
import javax.lang.model.element.Element
import javax.lang.model.type.TypeMirror
data class InterfaceModelMetadata(
val typeName: TypeName,
val fieldName: String,
val enclosedElement: Element,
val methodName: String,
val returnTypeMirror: TypeMirror)