RMap filter methods are deprecated

pull/395/head
Nikita 9 years ago
parent f843275b7f
commit f05299dc1e

@ -67,6 +67,7 @@ public interface RMap<K, V> extends ConcurrentMap<K, V>, RExpirable, RMapAsync<K
* @param predicate * @param predicate
* @return * @return
*/ */
@Deprecated
Map<K, V> filterEntries(Predicate<Map.Entry<K, V>> predicate); Map<K, V> filterEntries(Predicate<Map.Entry<K, V>> predicate);
/** /**
@ -78,6 +79,7 @@ public interface RMap<K, V> extends ConcurrentMap<K, V>, RExpirable, RMapAsync<K
* @param predicate * @param predicate
* @return * @return
*/ */
@Deprecated
Map<K, V> filterValues(Predicate<V> predicate); Map<K, V> filterValues(Predicate<V> predicate);
/** /**
@ -89,6 +91,7 @@ public interface RMap<K, V> extends ConcurrentMap<K, V>, RExpirable, RMapAsync<K
* @param predicate * @param predicate
* @return * @return
*/ */
@Deprecated
Map<K, V> filterKeys(Predicate<K> predicate); Map<K, V> filterKeys(Predicate<K> predicate);
/** /**

Loading…
Cancel
Save