Uses of Class
org.hamcrest.core.AnyOf

Packages that use AnyOf
Package
Description
 
Fundamental matchers of objects and values, and composite matchers.
  • Uses of AnyOf in org.hamcrest

    Methods in org.hamcrest that return AnyOf
    Modifier and Type
    Method
    Description
    static <T> AnyOf<T>
    CoreMatchers.anyOf(Iterable<Matcher<? super T>> matchers)
    Creates a matcher that matches if the examined object matches ANY of the specified matchers.
    static <T> AnyOf<T>
    CoreMatchers.anyOf(Matcher<? super T>... matchers)
    Creates a matcher that matches if the examined object matches ANY of the specified matchers.
    static <T> AnyOf<T>
    Matchers.anyOf(Iterable<Matcher<? super T>> matchers)
    Creates a matcher that matches if the examined object matches ANY of the specified matchers.
    static <T> AnyOf<T>
    Matchers.anyOf(Matcher<? super T>... matchers)
    Creates a matcher that matches if the examined object matches ANY of the specified matchers.
    static <T> AnyOf<T>
    Matchers.anyOf(Matcher<? super T> first, Matcher<? super T> second)
    Creates a matcher that matches if the examined object matches ANY of the specified matchers.
    static <T> AnyOf<T>
    Matchers.anyOf(Matcher<? super T> first, Matcher<? super T> second, Matcher<? super T> third)
    Creates a matcher that matches if the examined object matches ANY of the specified matchers.
    static <T> AnyOf<T>
    Matchers.anyOf(Matcher<? super T> first, Matcher<? super T> second, Matcher<? super T> third, Matcher<? super T> fourth)
    Creates a matcher that matches if the examined object matches ANY of the specified matchers.
    static <T> AnyOf<T>
    Matchers.anyOf(Matcher<? super T> first, Matcher<? super T> second, Matcher<? super T> third, Matcher<? super T> fourth, Matcher<? super T> fifth)
    Creates a matcher that matches if the examined object matches ANY of the specified matchers.
    static <T> AnyOf<T>
    Matchers.anyOf(Matcher<? super T> first, Matcher<? super T> second, Matcher<? super T> third, Matcher<? super T> fourth, Matcher<? super T> fifth, Matcher<? super T> sixth)
    Creates a matcher that matches if the examined object matches ANY of the specified matchers.
  • Uses of AnyOf in org.hamcrest.core

    Methods in org.hamcrest.core that return AnyOf
    Modifier and Type
    Method
    Description
    static <T> AnyOf<T>
    AnyOf.anyOf(Iterable<Matcher<? super T>> matchers)
    Creates a matcher that matches if the examined object matches ANY of the specified matchers.
    static <T> AnyOf<T>
    AnyOf.anyOf(Matcher<? super T>... matchers)
    Creates a matcher that matches if the examined object matches ANY of the specified matchers.