Package org.apache.commons.lang3
Class ThreadUtils.NamePredicate
java.lang.Object
org.apache.commons.lang3.ThreadUtils.NamePredicate
- All Implemented Interfaces:
ThreadUtils.ThreadGroupPredicate
,ThreadUtils.ThreadPredicate
- Enclosing class:
- ThreadUtils
@Deprecated
public static class ThreadUtils.NamePredicate
extends Object
implements ThreadUtils.ThreadPredicate, ThreadUtils.ThreadGroupPredicate
Deprecated.
Used internally, consider private.
A predicate implementation which matches a thread or thread group name.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Deprecated.Evaluates this predicate on the given thread.boolean
test
(ThreadGroup threadGroup) Deprecated.Evaluates this predicate on the given thread group.
-
Constructor Details
-
NamePredicate
Deprecated.Constructs an instance.- Parameters:
name
- thread or thread group name- Throws:
NullPointerException
- if the name isnull
-
-
Method Details
-
test
Deprecated.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
-
test
Deprecated.Description copied from interface:ThreadUtils.ThreadGroupPredicate
Evaluates this predicate on the given thread group.- Specified by:
test
in interfaceThreadUtils.ThreadGroupPredicate
- Parameters:
threadGroup
- the thread group- Returns:
true
if the threadGroup matches the predicate, otherwisefalse
-
Predicate
.