Interface ConfigurationEntryStore<V>

Type Parameters:
V - store value type
All Superinterfaces:
DataStore<V>, MultiEntryStore<V>

public interface ConfigurationEntryStore<V> extends DataStore<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 Details

    • getMatchingValues

      default Collection<V> getMatchingValues(Predicate<V> predicate)
      Return all values matching the given Predicate. Default implementation since 2.44.0
      Parameters:
      predicate - predicate to match values
      Returns:
      filtered collection of values