Uses of Class
org.hamcrest.TypeSafeMatcher
-
Packages that use TypeSafeMatcher Package Description org.hamcrest org.hamcrest.beans Matchers of Java Bean properties and their values.org.hamcrest.collection Matchers of arrays and collections.org.hamcrest.core Fundamental matchers of objects and values, and composite matchers.org.hamcrest.number Matchers that perform numeric comparisons.org.hamcrest.object Matchers that inspect objects and classes.org.hamcrest.text Matchers that perform text comparisons. -
-
Uses of TypeSafeMatcher in org.hamcrest
Subclasses of TypeSafeMatcher in org.hamcrest Modifier and Type Class Description classCustomTypeSafeMatcher<T>Utility class for writing one off matchers. -
Uses of TypeSafeMatcher in org.hamcrest.beans
Subclasses of TypeSafeMatcher in org.hamcrest.beans Modifier and Type Class Description classHasProperty<T>A Matcher that checks that an object has a JavaBean property with the specified name. -
Uses of TypeSafeMatcher in org.hamcrest.collection
Subclasses of TypeSafeMatcher in org.hamcrest.collection Modifier and Type Class Description classArrayAsIterableMatcher<E>classHasItemInArray<T>Matches if an array contains an item satisfying a nested matcher.classIsArray<T>Matcher for array whose elements satisfy a sequence of matchers.classIsArrayContainingInAnyOrder<E>Deprecated.As of release 2.1, replaced byArrayMatching.classIsArrayContainingInOrder<E>Deprecated.As of release 2.1, replaced byArrayMatching.classIsEmptyCollection<E>Tests if collection is empty.classIsEmptyIterable<E>Tests if collection is empty.classIsMapContaining<K,V> -
Uses of TypeSafeMatcher in org.hamcrest.core
Subclasses of TypeSafeMatcher in org.hamcrest.core Modifier and Type Class Description classStringContainsTests if the argument is a string that contains a specific substring.classStringEndsWithTests if the argument is a string that ends with a specific substring.classStringStartsWithTests if the argument is a string that starts with a specific substring.classSubstringMatcher -
Uses of TypeSafeMatcher in org.hamcrest.number
Subclasses of TypeSafeMatcher in org.hamcrest.number Modifier and Type Class Description classBigDecimalCloseToclassIsCloseToIs the value a number equal to a value within some range of acceptable error?classIsNaNIs the value a number actually not a number (NaN)? -
Uses of TypeSafeMatcher in org.hamcrest.object
Subclasses of TypeSafeMatcher in org.hamcrest.object Modifier and Type Class Description classIsCompatibleType<T> -
Uses of TypeSafeMatcher in org.hamcrest.text
Subclasses of TypeSafeMatcher in org.hamcrest.text Modifier and Type Class Description classIsBlankStringMatches blank Strings (and null).classIsEmptyStringMatches empty Strings (and null).classIsEqualCompressingWhiteSpaceTests if a string is equal to another string, compressing any changes in whitespace.classIsEqualIgnoringCaseTests if a string is equal to another string, regardless of the case.classMatchesPatternclassStringContainsInOrder
-