(Entry<V, K> input)
| 3189 | private static <K, V> Predicate<Entry<V, K>> inversePredicate(final Predicate<? super Entry<K, V>> forwardPredicate) { |
| 3190 | return new Predicate<Entry<V, K>>() { |
| 3191 | @Override |
| 3192 | public boolean apply(Entry<V, K> input) { |
| 3193 | return forwardPredicate.apply(Maps.immutableEntry(input.getValue(), input.getKey())); |
| 3194 | } |
| 3195 | }; |
| 3196 | } |
| 3197 |
no test coverage detected