Files
KavaRef/docs-source/src/en/index.md
2025-06-25 19:05:35 +08:00

1.1 KiB

home, title, heroImage, actions, features, footer
home title heroImage actions features footer
true Home /images/logo.svg
text link type
Get Started /en/guide/home primary
text link type
Changelog /en/about/changelog secondary
title details
Light and Elegant A powerful, elegant, beautiful API built with Kotlin lambda can help you quickly implement bytecode filtering and reflection functions.
title details
Fully Compatible Using native Java APIs to implement reflection functionality, it can be used on any Kotlin on JVM project, and it is no problem on Android.
title details
Quickly Started Simple and easy to use it now! Do not need complex configuration and full development experience, Integrate dependencies and enjoy yourself.
Apache-2.0 License | Copyright (C) 2019 HighCapable

Start reflecting anytime, anywhere.

public class World {

    private void sayHello(String content) {
        System.out.println("Hello " + content + "!");
    }
}
World().resolve().firstMethod {
    name = "sayHello"
    parameters(String::class)
}.invoke("KavaRef")