Package sonia.scm.store
Interface ConfigurationEntryStore<V>
- Type Parameters:
V
- store value type
- All Superinterfaces:
DataStore<V>
,MultiEntryStore<V>
A ConfigurationEntryStore can be used to store multiple entries of structured
configuration data. Note: the default implementation use JAXB to
marshall the items.
- Since:
- 1.31
-
Method Summary
Modifier and TypeMethodDescriptiondefault Collection<V>
getMatchingValues
(Predicate<V> predicate) Return all values matching the givenPredicate
.Methods inherited from interface sonia.scm.store.MultiEntryStore
clear, get, getOptional, remove
-
Method Details
-
getMatchingValues
Return all values matching the givenPredicate
. Default implementation since 2.44.0- Parameters:
predicate
- predicate to match values- Returns:
- filtered collection of values
-