Uses of Class
org.springframework.core.ParameterizedTypeReference
Packages that use ParameterizedTypeReference
Package
Description
Provides basic classes for exception handling and version detection,
and other core helpers that are not specific to any part of the framework.
Contains an abstraction over client-side HTTP.
Support for the RSocket protocol.
Mock objects for the functional web framework.
Support for testing Spring WebFlux server endpoints via
WebTestClient.Core package of the client-side web support.
Provides a foundation for both the reactive client and server subpackages.
Provides a reactive
WebClient
that builds on top of the
org.springframework.http.client.reactive reactive HTTP adapter layer.Classes supporting the
org.springframework.web.reactive.function.client package.Provides the types that make up Spring's functional web framework for Reactive environments.
Classes supporting the
org.springframework.web.reactive.function.server package.Provides the types that make up Spring's functional web framework for Servlet environments.
-
Uses of ParameterizedTypeReference in org.springframework.core
Methods in org.springframework.core that return ParameterizedTypeReferenceModifier and TypeMethodDescriptionstatic <T> ParameterizedTypeReference<T>Build aParameterizedTypeReferencewrapping the given type.Methods in org.springframework.core with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescriptionstatic ResolvableTypeResolvableType.forType(ParameterizedTypeReference<?> typeReference) Return aResolvableTypefor the specifiedParameterizedTypeReference. -
Uses of ParameterizedTypeReference in org.springframework.http.client
Methods in org.springframework.http.client with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescription<T,P extends Publisher<T>>
MultipartBodyBuilder.PartBuilderMultipartBodyBuilder.asyncPart(String name, P publisher, ParameterizedTypeReference<T> typeReference) Variant ofMultipartBodyBuilder.asyncPart(String, Publisher, Class)with aParameterizedTypeReferencefor the element type information. -
Uses of ParameterizedTypeReference in org.springframework.messaging.rsocket
Methods in org.springframework.messaging.rsocket with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescriptionRSocketRequester.RequestSpec.data(Object producer, ParameterizedTypeReference<?> elementTypeRef) Variant ofRSocketRequester.RequestSpec.data(Object, Class)for when the type hint has to have a generic type.<T> voidDefaultMetadataExtractor.metadataToExtract(MimeType mimeType, ParameterizedTypeReference<T> type, BiConsumer<T, Map<String, Object>> mapper) default voidMetadataExtractorRegistry.metadataToExtract(MimeType mimeType, ParameterizedTypeReference<?> targetType, String name) Variant ofMetadataExtractorRegistry.metadataToExtract(MimeType, Class, String)that acceptsParameterizedTypeReferenceinstead ofClassfor specifying a target type with generic parameters.<T> voidMetadataExtractorRegistry.metadataToExtract(MimeType mimeType, ParameterizedTypeReference<T> type, BiConsumer<T, Map<String, Object>> mapper) Variant ofMetadataExtractorRegistry.metadataToExtract(MimeType, Class, BiConsumer)that acceptsParameterizedTypeReferenceinstead ofClassfor specifying a target type with generic parameters.<T> reactor.core.publisher.Flux<T>RSocketRequester.RetrieveSpec.retrieveFlux(ParameterizedTypeReference<T> dataTypeRef) Variant ofRSocketRequester.RetrieveSpec.retrieveFlux(Class)for when the dataType has to have a generic type.<T> reactor.core.publisher.Mono<T>RSocketRequester.RetrieveSpec.retrieveMono(ParameterizedTypeReference<T> dataTypeRef) Variant ofRSocketRequester.RetrieveSpec.retrieveMono(Class)for when the dataType has to have a generic type. -
Uses of ParameterizedTypeReference in org.springframework.mock.web.reactive.function.server
Methods in org.springframework.mock.web.reactive.function.server with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescription<S> reactor.core.publisher.Flux<S>MockServerRequest.bodyToFlux(ParameterizedTypeReference<S> typeReference) <S> reactor.core.publisher.Mono<S>MockServerRequest.bodyToMono(ParameterizedTypeReference<S> typeReference) -
Uses of ParameterizedTypeReference in org.springframework.test.web.reactive.server
Methods in org.springframework.test.web.reactive.server with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescriptionWebTestClient.RequestBodySpec.body(Object producer, ParameterizedTypeReference<?> elementTypeRef) Set the body from the given producer.<T,S extends Publisher<T>>
WebTestClient.RequestHeadersSpec<?>WebTestClient.RequestBodySpec.body(S publisher, ParameterizedTypeReference<T> elementTypeRef) Variant ofWebTestClient.RequestBodySpec.body(Publisher, Class)that allows providing element type information with generics.<B> WebTestClient.BodySpec<B,?> WebTestClient.ResponseSpec.expectBody(ParameterizedTypeReference<B> bodyType) Alternative toWebTestClient.ResponseSpec.expectBody(Class)that accepts information about a target type with generics.<E> WebTestClient.ListBodySpec<E>WebTestClient.ResponseSpec.expectBodyList(ParameterizedTypeReference<E> elementType) Alternative toWebTestClient.ResponseSpec.expectBodyList(Class)that accepts information about a target type with generics.<T> FluxExchangeResult<T>WebTestClient.ResponseSpec.returnResult(ParameterizedTypeReference<T> elementTypeRef) Alternative toWebTestClient.ResponseSpec.returnResult(Class)that accepts information about a target type with generics. -
Uses of ParameterizedTypeReference in org.springframework.web.client
Methods in org.springframework.web.client with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescription<T> ResponseEntity<T>RestOperations.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Object... uriVariables) Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response asResponseEntity.<T> ResponseEntity<T>RestOperations.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Map<String, ?> uriVariables) Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response asResponseEntity.<T> ResponseEntity<T>RestOperations.exchange(URI url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType) Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response asResponseEntity.<T> ResponseEntity<T>RestOperations.exchange(RequestEntity<?> requestEntity, ParameterizedTypeReference<T> responseType) Execute the request specified in the givenRequestEntityand return the response asResponseEntity.<T> ResponseEntity<T>RestTemplate.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Object... uriVariables) <T> ResponseEntity<T>RestTemplate.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Map<String, ?> uriVariables) <T> ResponseEntity<T>RestTemplate.exchange(URI url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType) <T> ResponseEntity<T>RestTemplate.exchange(RequestEntity<?> entity, ParameterizedTypeReference<T> responseType) -
Uses of ParameterizedTypeReference in org.springframework.web.reactive.function
Methods in org.springframework.web.reactive.function with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescriptionstatic <T,P extends Publisher<T>>
BodyInserters.MultipartInserterBodyInserters.fromMultipartAsyncData(String name, P publisher, ParameterizedTypeReference<T> typeReference) Variant ofBodyInserters.fromMultipartAsyncData(String, Publisher, Class)that accepts aParameterizedTypeReferencefor the element type, which allows specifying generic type information.static <T> BodyInserter<T,ReactiveHttpOutputMessage> BodyInserters.fromProducer(T producer, ParameterizedTypeReference<?> elementTypeRef) Inserter to write the given producer of value(s) which must be aPublisheror another producer adaptable to aPublisherviaReactiveAdapterRegistry.static <T,P extends Publisher<T>>
BodyInserter<P,ReactiveHttpOutputMessage> BodyInserters.fromPublisher(P publisher, ParameterizedTypeReference<T> elementTypeRef) Inserter to write the givenPublisher.static <T> BodyExtractor<reactor.core.publisher.Flux<T>,ReactiveHttpInputMessage> BodyExtractors.toFlux(ParameterizedTypeReference<T> typeRef) Variant ofBodyExtractors.toFlux(Class)for type information with generics.static <T> BodyExtractor<reactor.core.publisher.Mono<T>,ReactiveHttpInputMessage> BodyExtractors.toMono(ParameterizedTypeReference<T> elementTypeRef) Variant ofBodyExtractors.toMono(Class)for type information with generics.<T,P extends Publisher<T>>
BodyInserters.MultipartInserterBodyInserters.MultipartInserter.withPublisher(String name, P publisher, ParameterizedTypeReference<T> typeReference) Variant ofBodyInserters.MultipartInserter.withPublisher(String, Publisher, Class)that accepts aParameterizedTypeReferencefor the element type, which allows specifying generic type information. -
Uses of ParameterizedTypeReference in org.springframework.web.reactive.function.client
Methods in org.springframework.web.reactive.function.client with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescription<S,P extends Publisher<S>>
ClientRequest.BuilderClientRequest.Builder.body(P publisher, ParameterizedTypeReference<S> typeReference) Set the body of the request to the givenPublisherand return it.WebClient.RequestBodySpec.body(Object producer, ParameterizedTypeReference<?> elementTypeRef) Variant ofWebClient.RequestBodySpec.body(Publisher, ParameterizedTypeReference)that allows using any producer that can be resolved toPublisherviaReactiveAdapterRegistry.<T,P extends Publisher<T>>
WebClient.RequestHeadersSpec<?>WebClient.RequestBodySpec.body(P publisher, ParameterizedTypeReference<T> elementTypeRef) Variant ofWebClient.RequestBodySpec.body(Publisher, Class)that allows providing element type information with generics.<T> reactor.core.publisher.Flux<T>ClientResponse.bodyToFlux(ParameterizedTypeReference<T> elementTypeRef) Extract the body to aFlux.<T> reactor.core.publisher.Flux<T>WebClient.ResponseSpec.bodyToFlux(ParameterizedTypeReference<T> elementTypeRef) Variant ofWebClient.ResponseSpec.bodyToMono(Class)with aParameterizedTypeReference.<T> reactor.core.publisher.Mono<T>ClientResponse.bodyToMono(ParameterizedTypeReference<T> elementTypeRef) Extract the body to aMono.<T> reactor.core.publisher.Mono<T>WebClient.ResponseSpec.bodyToMono(ParameterizedTypeReference<T> elementTypeRef) Variant ofWebClient.ResponseSpec.bodyToMono(Class)with aParameterizedTypeReference.<T> reactor.core.publisher.Mono<ResponseEntity<T>>ClientResponse.toEntity(ParameterizedTypeReference<T> bodyTypeReference) Return this response as a delayedResponseEntity.<T> reactor.core.publisher.Mono<ResponseEntity<T>>WebClient.ResponseSpec.toEntity(ParameterizedTypeReference<T> bodyTypeReference) Variant ofWebClient.ResponseSpec.bodyToMono(Class)with aParameterizedTypeReference.<T> reactor.core.publisher.Mono<ResponseEntity<reactor.core.publisher.Flux<T>>>WebClient.ResponseSpec.toEntityFlux(ParameterizedTypeReference<T> elementTypeReference) Variant ofWebClient.ResponseSpec.toEntityFlux(Class)with aParameterizedTypeReference.<T> reactor.core.publisher.Mono<ResponseEntity<List<T>>>ClientResponse.toEntityList(ParameterizedTypeReference<T> elementTypeRef) Return this response as a delayed list ofResponseEntitys.<T> reactor.core.publisher.Mono<ResponseEntity<List<T>>>WebClient.ResponseSpec.toEntityList(ParameterizedTypeReference<T> elementTypeRef) Variant ofWebClient.ResponseSpec.toEntity(Class)with aParameterizedTypeReference. -
Uses of ParameterizedTypeReference in org.springframework.web.reactive.function.client.support
Methods in org.springframework.web.reactive.function.client.support with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescription<T> reactor.core.publisher.Flux<T>ClientResponseWrapper.bodyToFlux(ParameterizedTypeReference<T> elementTypeRef) <T> reactor.core.publisher.Mono<T>ClientResponseWrapper.bodyToMono(ParameterizedTypeReference<T> elementTypeRef) <T> reactor.core.publisher.Mono<ResponseEntity<T>>ClientResponseWrapper.toEntity(ParameterizedTypeReference<T> bodyTypeReference) <T> reactor.core.publisher.Mono<ResponseEntity<List<T>>>ClientResponseWrapper.toEntityList(ParameterizedTypeReference<T> elementTypeRef) -
Uses of ParameterizedTypeReference in org.springframework.web.reactive.function.server
Methods in org.springframework.web.reactive.function.server with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescriptionreactor.core.publisher.Mono<ServerResponse>ServerResponse.BodyBuilder.body(Object producer, ParameterizedTypeReference<?> elementTypeRef) Variant ofServerResponse.BodyBuilder.body(Publisher, ParameterizedTypeReference)that allows using any producer that can be resolved toPublisherviaReactiveAdapterRegistry.<T,P extends Publisher<T>>
reactor.core.publisher.Mono<ServerResponse>ServerResponse.BodyBuilder.body(P publisher, ParameterizedTypeReference<T> elementTypeRef) Variant ofServerResponse.BodyBuilder.body(Publisher, Class)that allows using any producer that can be resolved toPublisherviaReactiveAdapterRegistry.<T> reactor.core.publisher.Flux<T>ServerRequest.bodyToFlux(ParameterizedTypeReference<T> typeReference) Extract the body to aFlux.<T> reactor.core.publisher.Mono<T>ServerRequest.bodyToMono(ParameterizedTypeReference<T> typeReference) Extract the body to aMono.static <T> EntityResponse.Builder<T>EntityResponse.fromProducer(T producer, ParameterizedTypeReference<?> typeReference) Create a builder with the given producer.static <T,P extends Publisher<T>>
EntityResponse.Builder<P>EntityResponse.fromPublisher(P publisher, ParameterizedTypeReference<T> typeReference) Create a builder with the given publisher. -
Uses of ParameterizedTypeReference in org.springframework.web.reactive.function.server.support
Methods in org.springframework.web.reactive.function.server.support with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescription<T> reactor.core.publisher.Flux<T>ServerRequestWrapper.bodyToFlux(ParameterizedTypeReference<T> typeReference) <T> reactor.core.publisher.Mono<T>ServerRequestWrapper.bodyToMono(ParameterizedTypeReference<T> typeReference) -
Uses of ParameterizedTypeReference in org.springframework.web.servlet.function
Methods in org.springframework.web.servlet.function with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescription<T> TServerRequest.body(ParameterizedTypeReference<T> bodyType) Extract the body as an object of the given type.<T> ServerResponseServerResponse.BodyBuilder.body(T body, ParameterizedTypeReference<T> bodyType) Set the body of the response to the givenObjectand return it.static <T> EntityResponse.Builder<T>EntityResponse.fromObject(T t, ParameterizedTypeReference<T> entityType) Create a builder with the given object and type reference.