<V,EXCEPTION extends java.lang.Exception> AbstractListAssert<?,java.util.List<? extends V>,V,ObjectAssert<V>> |
AbstractIterableAssert.extracting(ThrowingExtractor<? super ELEMENT,V,EXCEPTION> extractor) |
Extract the values from Iterable's elements under test by applying an extracting function (which might throw an
exception) on them.
|
<U,EXCEPTION extends java.lang.Exception> ObjectArrayAssert<U> |
AbstractObjectArrayAssert.extracting(ThrowingExtractor<? super ELEMENT,U,EXCEPTION> extractor) |
Extract the values from the array's elements by applying an extracting function (which might throw an exception)
on them.
|
<U,EXCEPTION extends java.lang.Exception> ObjectArrayAssert<U> |
AtomicReferenceArrayAssert.extracting(ThrowingExtractor<? super T,U,EXCEPTION> extractor) |
Extract the values from the array's elements by applying an extracting function (which might throw an
exception) on them.
|
<EXCEPTION extends java.lang.Exception> ListAssert<java.lang.Object> |
AbstractIterableAssert.flatExtracting(ThrowingExtractor<? super ELEMENT,?,EXCEPTION>... extractors) |
Extract multiple values from each Iterable 's element according to the given ThrowingExtractor s
and concatenate/flatten the extracted values in a list that is used as the new object under test.
|
<V,EXCEPTION extends java.lang.Exception> AbstractListAssert<?,java.util.List<? extends V>,V,ObjectAssert<V>> |
AbstractIterableAssert.flatExtracting(ThrowingExtractor<? super ELEMENT,? extends java.util.Collection<V>,EXCEPTION> extractor) |
Extract the Iterable values from Iterable's elements under test by applying an Iterable extracting function (which
might throw an exception) on them and concatenating the result lists.
|
<U,C extends java.util.Collection<U>,EXCEPTION extends java.lang.Exception> ObjectArrayAssert<U> |
AbstractObjectArrayAssert.flatExtracting(ThrowingExtractor<? super ELEMENT,C,EXCEPTION> extractor) |
Extract the Iterable values from arrays elements under test by applying an Iterable extracting function (which
might throw an exception) on them and concatenating the result lists into an array which becomes the new object
under test.
|
<U,C extends java.util.Collection<U>,EXCEPTION extends java.lang.Exception> ObjectArrayAssert<U> |
AtomicReferenceArrayAssert.flatExtracting(ThrowingExtractor<? super T,C,EXCEPTION> extractor) |
Extract the Iterable values from the array's elements by applying an Iterable extracting function (which might
throw an exception) on them and concatenating the result lists into an array which becomes the new object under
test.
|