Class LessOrEqualThanMatcherImpl<M extends java.lang.Comparable<M>>

  • Type Parameters:
    M - The matchee type, which must implement the Comparable interface for being able to do the according comparisons required by this Matcher.
    All Implemented Interfaces:
    Matcher<M>


    public class LessOrEqualThanMatcherImpl<M extends java.lang.Comparable<M>>
    extends java.lang.Object
    implements Matcher<M>
    A LESS OR EQUAL THAN Matcher, comparing its matchee with the matchee provided to the Matcher.isMatching(Object) method using the Comparable.compareTo(Object) method to be implemented by the matchees.
    • Constructor Summary

      Constructors 
      Constructor Description
      LessOrEqualThanMatcherImpl​(M aMatchee)
      Constructs an LESS OR EQUAL THAN Matcher, comparing its matchee with the matchee provided to the Matcher.isMatching(Object) method using the Comparable.compareTo(Object) method to be implemented by the matchees.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean isMatching​(M aMatchee)
      Tests whether the given event is matching the mathcer's criteria.
      • Methods inherited from class java.lang.Object

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

      • LessOrEqualThanMatcherImpl

        public LessOrEqualThanMatcherImpl​(M aMatchee)
        Constructs an LESS OR EQUAL THAN Matcher, comparing its matchee with the matchee provided to the Matcher.isMatching(Object) method using the Comparable.compareTo(Object) method to be implemented by the matchees.
        Parameters:
        aMatchee - The matchee with which to match.
    • Method Detail

      • isMatching

        public boolean isMatching​(M aMatchee)
        Tests whether the given event is matching the mathcer's criteria.
        Specified by:
        isMatching in interface Matcher<M extends java.lang.Comparable<M>>
        Parameters:
        aMatchee - The matchee used for testing matchability.
        Returns:
        True in case the matchee matches the matcher's criteria, else false.