org.hamcrest.collection
Class IsMapContainingValue<V>

java.lang.Object
  extended by org.hamcrest.BaseMatcher<T>
      extended by org.hamcrest.TypeSafeMatcher<java.util.Map<?,V>>
          extended by org.hamcrest.collection.IsMapContainingValue<V>
All Implemented Interfaces:
Matcher<java.util.Map<?,V>>, SelfDescribing

public class IsMapContainingValue<V>
extends TypeSafeMatcher<java.util.Map<?,V>>


Constructor Summary
IsMapContainingValue(Matcher<? super V> valueMatcher)
           
 
Method Summary
 void describeMismatchSafely(java.util.Map<?,V> map, Description mismatchDescription)
          Subclasses should override this.
 void describeTo(Description description)
          Generates a description of the object.
static
<V> Matcher<? super java.util.Map<?,V>>
hasValue(Matcher<? super V> valueMatcher)
           
static
<V> Matcher<? super java.util.Map<?,V>>
hasValue(V value)
           
 boolean matchesSafely(java.util.Map<?,V> item)
          Subclasses should implement this.
 
Methods inherited from class org.hamcrest.TypeSafeMatcher
describeMismatch, matches
 
Methods inherited from class org.hamcrest.BaseMatcher
_dont_implement_Matcher___instead_extend_BaseMatcher_, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IsMapContainingValue

public IsMapContainingValue(Matcher<? super V> valueMatcher)
Method Detail

matchesSafely

public boolean matchesSafely(java.util.Map<?,V> item)
Description copied from class: TypeSafeMatcher
Subclasses should implement this. The item will already have been checked for the specific type and will never be null.

Specified by:
matchesSafely in class TypeSafeMatcher<java.util.Map<?,V>>

describeMismatchSafely

public void describeMismatchSafely(java.util.Map<?,V> map,
                                   Description mismatchDescription)
Description copied from class: TypeSafeMatcher
Subclasses should override this. The item will already have been checked for the specific type and will never be null.

Overrides:
describeMismatchSafely in class TypeSafeMatcher<java.util.Map<?,V>>

describeTo

public void describeTo(Description description)
Description copied from interface: SelfDescribing
Generates a description of the object. The description may be part of a a description of a larger object of which this is just a component, so it should be worded appropriately.

Parameters:
description - The description to be built or appended to.

hasValue

public static <V> Matcher<? super java.util.Map<?,V>> hasValue(V value)

hasValue

public static <V> Matcher<? super java.util.Map<?,V>> hasValue(Matcher<? super V> valueMatcher)