Class WaitMatchers
java.lang.Object
com.google.errorprone.matchers.WaitMatchers
Matchers for method invocations related to Object.wait() and Condition.await();
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Matcher
<MethodInvocationTree> Matches any wait/await method.static final Matcher
<MethodInvocationTree> Matches wait/await methods that have a timeout. -
Method Summary
-
Field Details
-
waitMethod
Matches any wait/await method. -
waitMethodWithTimeout
Matches wait/await methods that have a timeout.
-