-
Notifications
You must be signed in to change notification settings - Fork 0
aslakknutsen/Query
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Query API
Defines a Structure for Querying for class metadata
Query Impl - Reflection
A Query API impl using the Java Reflection API.
Example:
Collection<Method> result = Query.forMethod()
.withAnnotation(MyAnnotation.class)
.withType(MyReturnType.class)
.run(MyClass.class);
Query Impl - Javassist
A Query API impl using the Javassist API. For use with classes outside a ClassLoader.
Example:
Collection<CtMethod> result = Query.forMethod()
.withAnnotation("org.my.MyAnnotation")
.withType("org.my.MyReturnType")
.run("org.my.MyClass");
About
Defines a Structure for Querying for type metadata
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published