Uses of Class
org.perfectable.introspection.query.MethodQuery
-
Packages that use MethodQuery Package Description org.perfectable.introspection Base package for this library.org.perfectable.introspection.query Set of wrappers for reflections over program constructs. -
-
Uses of MethodQuery in org.perfectable.introspection
Methods in org.perfectable.introspection that return MethodQuery Modifier and Type Method Description MethodQuery
ClassIntrospection. methods()
Query for methods of introspected class. -
Uses of MethodQuery in org.perfectable.introspection.query
Methods in org.perfectable.introspection.query that return MethodQuery Modifier and Type Method Description MethodQuery
MethodQuery. annotatedWith(AnnotationFilter annotationFilter)
MethodQuery
MethodQuery. asAccessible()
MethodQuery
MethodQuery. excludingModifier(int excludedModifier)
MethodQuery
MethodQuery. filter(Predicate<? super Method> filter)
MethodQuery
MethodQuery. named(String name)
MethodQuery
MethodQuery. nameMatching(Pattern namePattern)
MethodQuery
MethodQuery. notOverridden()
Restricts query for methods that are not overridden by other in the inheritance chain.static MethodQuery
MethodQuery. of(Class<?> type)
Queries for fields in specified class.MethodQuery
MethodQuery. parameters(ParametersFilter parametersFilter)
MethodQuery
MethodQuery. requiringModifier(int requiredModifier)
MethodQuery
MethodQuery. returning(Type type)
Restricts query to methods that has a return type that is subtype of specified type.MethodQuery
MethodQuery. returning(TypeFilter typeFilter)
Restricts query to methods that has a return type that match the filter.MethodQuery
MethodQuery. returningVoid()
Restricts query to methods that doesn't return a value, i.e.
-