Interface ResultMatcher<R>

Type Parameters:
R - the type of query results

public interface ResultMatcher<R>
A callback to filter out Query results.
Author:
Fabio Simeoni
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    match(R result)
    Returns true if the result should be retained.
  • Method Details

    • match

      boolean match(R result)
      Returns true if the result should be retained.
      Parameters:
      result - the result
      Returns:
      true if the result should be retained