Kotlin-Reflect-Tools-For-JVM
Introduction: Kotlin reflect tools for JVM
Tags:
Related Project: Kotlin-Reflect-Tools-For-Android
OverView
This is a tool library for Kotlin to use java reflect APIs in Kotlin simply method.It can modify or read the top level private visible property value in Kotlin way.
Note: This tools only availible for JVM not fit for android platform ,If you use on Android platform, Please use
Kotlin-Reflect-Tools-For-Android
Usage
Add jcenter repository in your moduel build gradle:
repositories { jcenter() }Apply library in dependency config:
compile 'wu.seal:kotlin-reflect-tools-for-jvm:1.1.2'
APIs
| Method | Describe |
|---|---|
| Any.getPropertyValue(propertyName: String): Any? | get object property value by name |
| Any.changePropertyValue(propertyName: String, newValue: Any?) | change object property value by name |
| Any.changePropertyValueIgnoreItsType(propertyName: String, newValue: Any?) | change object property value by name |
| Any.changePropertyValueByPropertyReference(kProperty: KProperty |
change object property value by property reference |
| Any.invokeMethod(methodName: String, vararg args: Any?): Any? | invoke a method through object by method name |
| change current this property valuev | |
| get other package level property value by other package level property name which is in the same kotlin file | |
| get other package level property value by other package level property name which is in the same kotlin file | |
| change package level property value | |
| change other package level property value by other package level property name which is in the same kotlin file | |
| change other package level property value by other package level property name which is in the same kotlin file | |
| invoke package level method by name which is in the same kotlin file | |
| invoke package level method by name which is in the same kotlin file |
All method don't care what the property or method visibility it is
Demo
For example a Kotlin file like this:
val topName = "topSeal"
val topNameWu = "topSealWu"
private val topAge = 666
private fun gotIt() = true
fun funDoubleAge(age: Int): Int {
return age * 2
}
class TestDemo {
private val name = "seal"
val age = 28
private fun isMan(): Boolean {
return true
}
}
Then we could do these :
@Test
fun getPropertyValue() {
val demo = TestDemo()
val nameValue = demo.getPropertyValue("name")
nameValue.should.be.equal("seal")
}
@Test
fun changePropertyValue() {
val demo = TestDemo()
val originValue = demo.age
demo.changePropertyValue("age", 100)
val nowValue = demo.age
originValue.should.not.equal(nowValue)
nowValue.should.be.equal(100)
}
@Test
fun changeValue() {
val demo = TestDemo()
demo::age.changeValue(demo, 100)
demo.age.should.be.equal(100)
}
@Test
fun packageLevelGetPropertyValueByName() {
val topAge = ::topNameWu.packageLevelGetPropertyValueByName("topAge")
topAge.should.be.equal(666)
}
@Test
fun packageLevelInvokeMethodByName() {
val methodResult = ::topName.packageLevelInvokeMethodByName("gotIt") as Boolean
methodResult.should.be.`true`
}
To see more usage cases ,you can have a look at the test case in project.
Others
- Welcome to raise any issue.
- Welcome to push a pull request
Find me useful ? :heart:
- Support me by clicking the :star: button on the upper right of this page. :v:
