Package io.anyline.nfc.bouncycastle.util
Interface Store
-
- All Implemented Interfaces:
public interface Store<T>
A generic interface describing a simple store of objects.
-
-
Method Summary
Modifier and Type Method Description abstract Collection<T>
getMatches(Selector<T> selector)
Return a possibly empty collection of objects that match the criteria implemented in the passed in Selector. -
-
Method Detail
-
getMatches
abstract Collection<T> getMatches(Selector<T> selector)
Return a possibly empty collection of objects that match the criteria implemented in the passed in Selector.
- Parameters:
selector
- the selector defining the match criteria.- Returns:
a collection of matching objects, empty if none available.
-
-
-
-