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

se.ansman.deager.models.AnnotationModel.kt Maven / Gradle / Ivy

The newest version!
package se.ansman.deager.models

import kotlin.reflect.KClass

interface AnnotationModel {
    val declaredAnnotations: List>
    fun isOfType(type: KClass<*>): Boolean
    fun  getValue(name: String): T?
    fun toAnnotationSpec(): AnnotationSpec
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy