Home | History | Annotate | Download | only in collection

Lines Matching refs:Matcher

5 import org.hamcrest.Matcher;
16 private final Matcher<K> keyMatcher;
17 private final Matcher<V> valueMatcher;
19 public IsMapContaining(Matcher<K> keyMatcher, Matcher<V> valueMatcher) {
42 public static <K,V> Matcher<Map<K,V>> hasEntry(Matcher<K> keyMatcher, Matcher<V> valueMatcher) {
47 public static <K,V> Matcher<Map<K,V>> hasEntry(K key, V value) {
52 public static <K,V> Matcher<Map<K,V>> hasKey(Matcher<K> keyMatcher) {
57 public static <K,V> Matcher<Map<K,V>> hasKey(K key) {
62 public static <K,V> Matcher<Map<K,V>> hasValue(Matcher<V> valueMatcher) {
67 public static <K,V> Matcher<Map<K,V>> hasValue(V value) {