|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.hamcrest.BaseMatcher<T> org.hamcrest.TypeSafeMatcher<T>
public abstract class TypeSafeMatcher<T>
Convenient base class for Matchers that require a non-null value of a specific type. This simply implements the null check, checks the type and then casts.
Constructor Summary | |
---|---|
protected |
TypeSafeMatcher()
The default constructor for simple sub types |
protected |
TypeSafeMatcher(java.lang.Class<?> expectedType)
Use this constructor if the subclass that implements matchesSafely
is not the class that binds <T> to a type. |
protected |
TypeSafeMatcher(ReflectiveTypeFinder typeFinder)
Use this constructor if the subclass that implements matchesSafely
is not the class that binds <T> to a type. |
Method Summary | |
---|---|
void |
describeMismatch(java.lang.Object item,
Description description)
Generate a description of why the matcher has not accepted the item. |
protected void |
describeMismatchSafely(T item,
Description mismatchDescription)
Subclasses should override this. |
boolean |
matches(java.lang.Object item)
Methods made final to prevent accidental override. |
protected abstract boolean |
matchesSafely(T item)
Subclasses should implement this. |
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 |
Methods inherited from interface org.hamcrest.SelfDescribing |
---|
describeTo |
Constructor Detail |
---|
protected TypeSafeMatcher()
protected TypeSafeMatcher(java.lang.Class<?> expectedType)
matchesSafely
is not the class that binds <T> to a type.
expectedType
- The expectedType of the actual value.protected TypeSafeMatcher(ReflectiveTypeFinder typeFinder)
matchesSafely
is not the class that binds <T> to a type.
typeFinder
- A type finder to extract the typeMethod Detail |
---|
protected abstract boolean matchesSafely(T item)
protected void describeMismatchSafely(T item, Description mismatchDescription)
public final boolean matches(java.lang.Object item)
BaseMatcher
.
item
- the object against which the matcher is evaluated.
true
if item matches, otherwise false
.BaseMatcher
public final void describeMismatch(java.lang.Object item, Description description)
Matcher
matches(item)
is false, but
will not check this.
describeMismatch
in interface Matcher<T>
describeMismatch
in class BaseMatcher<T>
item
- The item that the Matcher has rejected.description
- The description to be built or appended to.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |