Package org.apache.commons.lang3
Class ThreadUtils.ThreadIdPredicate
- java.lang.Object
-
- org.apache.commons.lang3.ThreadUtils.ThreadIdPredicate
-
- All Implemented Interfaces:
ThreadUtils.ThreadPredicate
- Enclosing class:
- ThreadUtils
public static class ThreadUtils.ThreadIdPredicate extends java.lang.Object implements ThreadUtils.ThreadPredicate
A predicate implementation which matches a thread id.
-
-
Constructor Summary
Constructors Constructor Description ThreadIdPredicate(long threadId)
Predicate constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
test(java.lang.Thread thread)
Evaluates this predicate on the given thread.
-
-
-
Method Detail
-
test
public boolean test(java.lang.Thread thread)
Description copied from interface:ThreadUtils.ThreadPredicate
Evaluates this predicate on the given thread.- Specified by:
test
in interfaceThreadUtils.ThreadPredicate
- Parameters:
thread
- the thread- Returns:
true
if the thread matches the predicate, otherwisefalse
-
-