Interface Matcher<T>

All Known Implementing Classes:
AbstractMatcher

public interface Matcher<T>
Returns true or false for a given input.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns true if this matches t, false otherwise.
  • Method Details

    • matches

      boolean matches(T t)
      Returns true if this matches t, false otherwise.