Class ThreadUtils.NamePredicate

    • Constructor Summary

      Constructors 
      Constructor Description
      NamePredicate​(java.lang.String name)
      Deprecated.
      Constructs an instance.
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      boolean test​(java.lang.Thread thread)
      Deprecated.
      Evaluates this predicate on the given thread.
      boolean test​(java.lang.ThreadGroup threadGroup)
      Deprecated.
      Evaluates this predicate on the given thread group.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • NamePredicate

        public NamePredicate​(java.lang.String name)
        Deprecated.
        Constructs an instance.
        Parameters:
        name - thread or thread group name
        Throws:
        java.lang.NullPointerException - if the name is null
    • Method Detail

      • test

        public boolean test​(java.lang.Thread thread)
        Deprecated.
        Description copied from interface: ThreadUtils.ThreadPredicate
        Evaluates this predicate on the given thread.
        Specified by:
        test in interface ThreadUtils.ThreadPredicate
        Parameters:
        thread - the thread
        Returns:
        true if the thread matches the predicate, otherwise false
      • test

        public boolean test​(java.lang.ThreadGroup threadGroup)
        Deprecated.
        Description copied from interface: ThreadUtils.ThreadGroupPredicate
        Evaluates this predicate on the given thread group.
        Specified by:
        test in interface ThreadUtils.ThreadGroupPredicate
        Parameters:
        threadGroup - the thread group
        Returns:
        true if the threadGroup matches the predicate, otherwise false