Interface MethodMatchers.AnyMethodMatcher
- All Superinterfaces:
Matcher<com.sun.source.tree.ExpressionTree>
,MethodMatchers.MethodMatcher
,Serializable
- Enclosing class:
- MethodMatchers
@Deprecated public static interface MethodMatchers.AnyMethodMatcher extends MethodMatchers.MethodMatcher
Deprecated.
-
Method Summary
Modifier and Type Method Description MethodMatchers.MethodClassMatcher
anyClass()
Deprecated.Match on any class.MethodMatchers.MethodClassMatcher
onClass(TypePredicate predicate)
Deprecated.Match the given type exactly.MethodMatchers.MethodClassMatcher
onClass(String className)
Deprecated.Match on types with the given fully-qualified name.MethodMatchers.MethodClassMatcher
onDescendantOf(Supplier<com.sun.tools.javac.code.Type> classType)
Deprecated.Match on descendants of the given type.MethodMatchers.MethodClassMatcher
onDescendantOf(String className)
Deprecated.Match on descendants of the given fully-qualified type name.MethodMatchers.MethodClassMatcher
onDescendantOfAny(Iterable<String> classTypes)
Deprecated.Match on types that are descendants of any of the given types.MethodMatchers.MethodClassMatcher
onDescendantOfAny(String... classTypes)
Deprecated.Match on types that are descendants of any of the given types.
-
Method Details
-
onClass
Deprecated.Match the given type exactly. -
onClass
Deprecated.Match on types with the given fully-qualified name. (e.g.java.lang.String
) -
onDescendantOf
Deprecated.Match on descendants of the given fully-qualified type name. -
onDescendantOf
MethodMatchers.MethodClassMatcher onDescendantOf(Supplier<com.sun.tools.javac.code.Type> classType)Deprecated.Match on descendants of the given type. -
onDescendantOfAny
Deprecated.Match on types that are descendants of any of the given types. -
onDescendantOfAny
Deprecated.Match on types that are descendants of any of the given types. -
anyClass
MethodMatchers.MethodClassMatcher anyClass()Deprecated.Match on any class.
-
Matcher<ExpressionTree>
instead of referring directly to this type.