Class Equals

    • Constructor Summary

      Constructors 
      Constructor Description
      Equals​(java.lang.Object wanted)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String describe​(java.lang.Object object)  
      void describeTo​(org.hamcrest.Description description)
      By default this method decamelizes matchers name to promote meaningful names for matchers.
      boolean equals​(java.lang.Object o)  
      protected java.lang.Object getWanted()  
      int hashCode()  
      boolean matches​(java.lang.Object actual)
      Returns whether this matcher accepts the given argument.
      boolean typeMatches​(java.lang.Object object)  
      org.hamcrest.SelfDescribing withExtraTypeInfo()  
      • Methods inherited from class org.hamcrest.BaseMatcher

        _dont_implement_Matcher___instead_extend_BaseMatcher_, describeMismatch, toString
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • Equals

        public Equals​(java.lang.Object wanted)
    • Method Detail

      • matches

        public boolean matches​(java.lang.Object actual)
        Description copied from class: ArgumentMatcher
        Returns whether this matcher accepts the given argument.

        The method should never assert if the argument doesn't match. It should only return false.

        Specified by:
        matches in interface org.hamcrest.Matcher<java.lang.Object>
        Specified by:
        matches in class ArgumentMatcher<java.lang.Object>
        Parameters:
        actual - the argument
        Returns:
        whether this matcher accepts the given argument.
      • describeTo

        public void describeTo​(org.hamcrest.Description description)
        Description copied from class: ArgumentMatcher
        By default this method decamelizes matchers name to promote meaningful names for matchers.

        For example StringWithStrongLanguage matcher will generate 'String with strong language' description in case of failure.

        You might want to override this method to provide more specific description of the matcher (useful when verification failures are reported).

        Specified by:
        describeTo in interface org.hamcrest.SelfDescribing
        Overrides:
        describeTo in class ArgumentMatcher<java.lang.Object>
        Parameters:
        description - the description to which the matcher description is appended.
      • describe

        public java.lang.String describe​(java.lang.Object object)
      • getWanted

        protected final java.lang.Object getWanted()
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object