Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ ResponseSpec onRawStatus(IntPredicate statusCodePredicate,
<T> Flux<T> bodyToFlux(Class<T> elementClass);

/**
* Variant of {@link #bodyToMono(Class)} with a {@link ParameterizedTypeReference}.
* Variant of {@link #bodyToFlux(Class)} with a {@link ParameterizedTypeReference}.
* @param elementTypeRef the type of element to decode to
* @param <T> the body element type
* @return the decoded body
Expand All @@ -859,7 +859,7 @@ ResponseSpec onRawStatus(IntPredicate statusCodePredicate,
<T> Mono<ResponseEntity<T>> toEntity(Class<T> bodyClass);

/**
* Variant of {@link #bodyToMono(Class)} with a {@link ParameterizedTypeReference}.
* Variant of {@link #toEntity(Class)} with a {@link ParameterizedTypeReference}.
* @param bodyTypeReference the expected response body type
* @param <T> the response body type
* @return the {@code ResponseEntity} with the decoded body
Expand All @@ -881,7 +881,7 @@ ResponseSpec onRawStatus(IntPredicate statusCodePredicate,
<T> Mono<ResponseEntity<List<T>>> toEntityList(Class<T> elementClass);

/**
* Variant of {@link #toEntity(Class)} with a {@link ParameterizedTypeReference}.
* Variant of {@link #toEntityList(Class)} with a {@link ParameterizedTypeReference}.
* @param elementTypeRef the type of element to decode the target Flux to
* @param <T> the body element type
* @return the {@code ResponseEntity}
Expand Down