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

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

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

import com.squareup.javapoet.TypeName

import javax.lang.model.element.Element
import javax.lang.model.type.TypeMirror

interface FieldInfo {
    val typeName: TypeName

    val typeMirror: TypeMirror

    val parentClassName: String

    fun  getAnnotation(annotationClass: Class): T?

    val fieldName: String

    val annotationNames: Array

    val element: Element?

    val isDirectAccess: Boolean
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy