Package org.hamcrest.core
Class ShortcutCombination<T>
- java.lang.Object
-
- org.hamcrest.BaseMatcher<T>
-
- org.hamcrest.core.ShortcutCombination<T>
-
- All Implemented Interfaces:
Matcher<T>
,SelfDescribing
- Direct Known Subclasses:
AnyOf
abstract class ShortcutCombination<T> extends BaseMatcher<T>
-
-
Constructor Summary
Constructors Constructor Description ShortcutCombination(java.lang.Iterable<Matcher<? super T>> matchers)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract void
describeTo(Description description)
Generates a description of the object.void
describeTo(Description description, java.lang.String operator)
abstract boolean
matches(java.lang.Object o)
Evaluates the matcher for argument item.protected boolean
matches(java.lang.Object o, boolean shortcut)
-
Methods inherited from class org.hamcrest.BaseMatcher
_dont_implement_Matcher___instead_extend_BaseMatcher_, describeMismatch, isNotNull, toString
-
-
-
-
Method Detail
-
matches
public abstract boolean matches(java.lang.Object o)
Description copied from interface:Matcher
Evaluates the matcher for argument item. This method matches against Object, instead of the generic type T. This is because the caller of the Matcher does not know at runtime what the type is (because of type erasure with Java generics). It is down to the implementations to check the correct type.- Parameters:
o
- the object against which the matcher is evaluated.- Returns:
true
if item matches, otherwisefalse
.- See Also:
BaseMatcher
-
describeTo
public abstract 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.
-
matches
protected boolean matches(java.lang.Object o, boolean shortcut)
-
describeTo
public void describeTo(Description description, java.lang.String operator)
-
-