I have a data class in kotlin , which is also a Room entity. Eg :
data class Pack(
@ColumnInfo(name = "name")
@SerializedName("name")
var name:String,
@SerializedName("is_free")
@ColumnInfo(name="is_free")
var isFree:Boolean,
@SerializedName("is_new")
@ColumnInfo(name="is_new")
var isNew:Boolean,
){ .. }
I want to get all the values of @ColumnInfo(name) , ie I want all the Room anotation names and its corresponding kotlin varible and its types. ie I want something like. Eg :
name - name - String is_free - isFree - Boolean is_new - isNew - Boolean
Is that possible using kotlin reflection of something?