Uses of Class
com.gengoai.reflection.RMethod
-
Packages that use RMethod Package Description com.gengoai.reflection Creation and manipulation of objects via reflection. -
-
Uses of RMethod in com.gengoai.reflection
Methods in com.gengoai.reflection that return RMethod Modifier and Type Method Description RMethod
Reflect. getMethod(String name)
Gets the method with the given name.RMethod
Reflect. getMethod(String name, Type... types)
Gets the method with the given name and with types compatible with the given types.RMethod
Reflect. getSingletonMethod()
Gets the singleton method of the object.static RMethod
RMethod. reflectOn(Object object, @NonNull Method method)
Wraps a method in the RMethod class with the given owning beanMethods in com.gengoai.reflection that return types with arguments of type RMethod Modifier and Type Method Description List<RMethod>
Reflect. getMethods()
Gets all methods.List<RMethod>
Reflect. getMethods(String name)
Gets all methods with the given name.List<RMethod>
Reflect. getMethodsWhere(@NonNull SerializablePredicate<? super RMethod> predicate)
Gets the methods for the class matching the given predicateList<RMethod>
Reflect. getMethodsWhere(String name, @NonNull SerializablePredicate<? super RMethod> predicate)
Gets the methods with the given name for the class matching the given predicateList<RMethod>
Reflect. getMethodsWithAnnotation(@NonNull Class<? extends Annotation>... annotationClasses)
Gets the methods for the class with at least of the given annotations.Method parameters in com.gengoai.reflection with type arguments of type RMethod Modifier and Type Method Description List<RMethod>
Reflect. getMethodsWhere(@NonNull SerializablePredicate<? super RMethod> predicate)
Gets the methods for the class matching the given predicateList<RMethod>
Reflect. getMethodsWhere(String name, @NonNull SerializablePredicate<? super RMethod> predicate)
Gets the methods with the given name for the class matching the given predicate
-