Interface TxnSearch
-
public interface TxnSearch
Represents a search through a set of transactions.- Author:
- Sean Reilly
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
matches(Txn txn)
boolean
matchesAll()
-
-
-
Method Detail
-
matches
boolean matches(Txn txn)
- Parameters:
txn
- The transaction to test.- Returns:
true
if and only if the given transaction matches the current search criteria.
-
matchesAll
boolean matchesAll()
- Returns:
- true if the current search matches all transactions.
-
-