1
1
/*
2
- * Copyright 2002-2023 the original author or authors.
2
+ * Copyright 2002-2025 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -876,7 +876,7 @@ ResponseSpec onRawStatus(IntPredicate statusCodePredicate,
876
876
<T > Flux <T > bodyToFlux (Class <T > elementClass );
877
877
878
878
/**
879
- * Variant of {@link #bodyToMono (Class)} with a {@link ParameterizedTypeReference}.
879
+ * Variant of {@link #bodyToFlux (Class)} with a {@link ParameterizedTypeReference}.
880
880
* @param elementTypeRef the type of element to decode to
881
881
* @param <T> the body element type
882
882
* @return the decoded body
@@ -896,7 +896,7 @@ ResponseSpec onRawStatus(IntPredicate statusCodePredicate,
896
896
<T > Mono <ResponseEntity <T >> toEntity (Class <T > bodyClass );
897
897
898
898
/**
899
- * Variant of {@link #bodyToMono (Class)} with a {@link ParameterizedTypeReference}.
899
+ * Variant of {@link #toEntity (Class)} with a {@link ParameterizedTypeReference}.
900
900
* @param bodyTypeReference the expected response body type
901
901
* @param <T> the response body type
902
902
* @return the {@code ResponseEntity} with the decoded body
@@ -918,7 +918,7 @@ ResponseSpec onRawStatus(IntPredicate statusCodePredicate,
918
918
<T > Mono <ResponseEntity <List <T >>> toEntityList (Class <T > elementClass );
919
919
920
920
/**
921
- * Variant of {@link #toEntity (Class)} with a {@link ParameterizedTypeReference}.
921
+ * Variant of {@link #toEntityList (Class)} with a {@link ParameterizedTypeReference}.
922
922
* @param elementTypeRef the type of element to decode the target Flux to
923
923
* @param <T> the body element type
924
924
* @return the {@code ResponseEntity}
0 commit comments