Class IsMapContainingKey<K>

java.lang.Object
org.hamcrest.BaseMatcher<Map<K,?>>
com.jayway.jsonassert.impl.matcher.MapTypeSafeMatcher<Map<K,?>>
com.jayway.jsonassert.impl.matcher.IsMapContainingKey<K>
All Implemented Interfaces:
org.hamcrest.Matcher<Map<K,?>>, org.hamcrest.SelfDescribing

public class IsMapContainingKey<K> extends MapTypeSafeMatcher<Map<K,?>>
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final org.hamcrest.Matcher<K>
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    IsMapContainingKey(org.hamcrest.Matcher<K> keyMatcher)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    describeTo(org.hamcrest.Description description)
     
    static <K> org.hamcrest.Matcher<Map<K,?>>
    hasKey(K key)
     
    static <K> org.hamcrest.Matcher<Map<K,?>>
    hasKey(org.hamcrest.Matcher<K> keyMatcher)
     
    boolean
    matchesSafely(Map<K,?> item)
     

    Methods inherited from class com.jayway.jsonassert.impl.matcher.MapTypeSafeMatcher

    matches

    Methods inherited from class org.hamcrest.BaseMatcher

    _dont_implement_Matcher___instead_extend_BaseMatcher_, describeMismatch, isNotNull, toString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • keyMatcher

      private final org.hamcrest.Matcher<K> keyMatcher
  • Constructor Details

    • IsMapContainingKey

      public IsMapContainingKey(org.hamcrest.Matcher<K> keyMatcher)
  • Method Details

    • matchesSafely

      public boolean matchesSafely(Map<K,?> item)
      Specified by:
      matchesSafely in class MapTypeSafeMatcher<Map<K,?>>
    • describeTo

      public void describeTo(org.hamcrest.Description description)
    • hasKey

      public static <K> org.hamcrest.Matcher<Map<K,?>> hasKey(K key)
    • hasKey

      public static <K> org.hamcrest.Matcher<Map<K,?>> hasKey(org.hamcrest.Matcher<K> keyMatcher)