Interface MethodMatchers.ConstructorClassMatcher
- All Superinterfaces:
Matcher<com.sun.source.tree.ExpressionTree>
,MethodMatchers.MethodMatcher
,Serializable
- Enclosing class:
- MethodMatchers
@Deprecated public static interface MethodMatchers.ConstructorClassMatcher extends MethodMatchers.MethodMatcher
Deprecated.
-
Method Summary
Modifier and Type Method Description MethodMatchers.ParameterMatcher
withNoParameters()
Deprecated.Match constructors with no formal parameters.MethodMatchers.ParameterMatcher
withParameters(Iterable<String> parameters)
Deprecated.Match constructors whose formal parameters have the given types.MethodMatchers.ParameterMatcher
withParameters(String first, String... rest)
Deprecated.Match constructors whose formal parameters have the given types.MethodMatchers.ParameterMatcher
withParametersOfType(Iterable<Supplier<com.sun.tools.javac.code.Type>> parameters)
Deprecated.Match constructors whose formal parameters have the given types.
-
Method Details
-
withNoParameters
MethodMatchers.ParameterMatcher withNoParameters()Deprecated.Match constructors with no formal parameters. -
withParameters
Deprecated.Match constructors whose formal parameters have the given types. -
withParameters
Deprecated.Match constructors whose formal parameters have the given types. -
withParametersOfType
MethodMatchers.ParameterMatcher withParametersOfType(Iterable<Supplier<com.sun.tools.javac.code.Type>> parameters)Deprecated.Match constructors whose formal parameters have the given types.
-
Matcher<ExpressionTree>
instead of referring directly to this type.