Package com.google.errorprone.matchers
Class WaitMatchers
java.lang.Object
com.google.errorprone.matchers.WaitMatchers
public final class WaitMatchers extends Object
Matchers for method invocations related to Object.wait() and Condition.await();
-
Field Summary
Fields Modifier and Type Field Description static Matcher<com.sun.source.tree.MethodInvocationTree>
waitMethod
Matches any wait/await method.static Matcher<com.sun.source.tree.MethodInvocationTree>
waitMethodWithTimeout
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.
-