kotlincursor.annotation.ColumnAdapter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlincursor-api Show documentation
Show all versions of kotlincursor-api Show documentation
Kotlin Cursor & ContentValues boilerplate annotation processor.
The newest version!
package kotlincursor.annotation
import kotlin.reflect.KClass
/**
* Annotation that indicates the [ColumnTypeAdapter] to use when converting the annotated field to
* [android.content.ContentValues] and from [android.database.Cursor].
*/
@Target(AnnotationTarget.FIELD)
annotation class ColumnAdapter(val value: KClass>)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy