Method
FilteredEntryMap
(Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate)
Source from the content-addressed store, hash-verified
| 2838 | final Set<Entry<K, V>> filteredEntrySet; |
| 2839 | |
| 2840 | FilteredEntryMap(Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) { |
| 2841 | super(unfiltered, entryPredicate); |
| 2842 | filteredEntrySet = Sets.filter(unfiltered.entrySet(), predicate); |
| 2843 | } |
| 2844 | |
| 2845 | @Override |
| 2846 | protected Set<Entry<K, V>> createEntrySet() { |
Callers
nothing calls this directly
Tested by
no test coverage detected