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

me.xx2bab.polyfill.matrix.ext.ReflectionExt.kt Maven / Gradle / Ivy

There is a newer version: 0.4.1
Show newest version
package me.xx2bab.polyfill.matrix.ext

fun  getField(clazz: Class, instance: T, fieldName: String): Any {
    val field = clazz.declaredFields.filter { it.name == fieldName }[0]
    field.isAccessible = true
    return field.get(instance) as Any
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy