Uses of Class
jakarta.ws.rs.core.GenericType
Packages that use GenericType
Package
Description
The JAX-RS client API
Low-level interfaces and annotations used to create RESTful service resources.
Server-Sent Events related API.
-
Uses of GenericType in jakarta.ws.rs.client
Methods in jakarta.ws.rs.client with parameters of type GenericTypeModifier and TypeMethodDescription<T> Future<T>AsyncInvoker.delete(GenericType<T> responseType) Invoke HTTP DELETE method for the current request asynchronously.<T> CompletionStage<T>CompletionStageRxInvoker.delete(GenericType<T> responseType) <R> TRxInvoker.delete(GenericType<R> responseType) Invoke HTTP DELETE method for the current request.<T> TSyncInvoker.delete(GenericType<T> responseType) Invoke HTTP DELETE method for the current request synchronously.<T> Future<T>AsyncInvoker.get(GenericType<T> responseType) Invoke HTTP GET method for the current request asynchronously.<T> CompletionStage<T>CompletionStageRxInvoker.get(GenericType<T> responseType) <R> TRxInvoker.get(GenericType<R> responseType) Invoke HTTP GET method for the current request.<T> TSyncInvoker.get(GenericType<T> responseType) Invoke HTTP GET method for the current request synchronously.<T> TInvocation.invoke(GenericType<T> responseType) Synchronously invoke the request and receive a response of the specified generic type back.<T> Future<T>AsyncInvoker.method(String name, Entity<?> entity, GenericType<T> responseType) Invoke an arbitrary method for the current request asynchronously.<T> Future<T>AsyncInvoker.method(String name, GenericType<T> responseType) Invoke an arbitrary method for the current request asynchronously.<T> CompletionStage<T>CompletionStageRxInvoker.method(String name, Entity<?> entity, GenericType<T> responseType) <T> CompletionStage<T>CompletionStageRxInvoker.method(String name, GenericType<T> responseType) <R> TRxInvoker.method(String name, Entity<?> entity, GenericType<R> responseType) Invoke an arbitrary method for the current request.<R> TRxInvoker.method(String name, GenericType<R> responseType) Invoke an arbitrary method for the current request.<T> TSyncInvoker.method(String name, Entity<?> entity, GenericType<T> responseType) Invoke an arbitrary method for the current request synchronously.<T> TSyncInvoker.method(String name, GenericType<T> responseType) Invoke an arbitrary method for the current request synchronously.<T> Future<T>AsyncInvoker.options(GenericType<T> responseType) Invoke HTTP OPTIONS method for the current request asynchronously.<T> CompletionStage<T>CompletionStageRxInvoker.options(GenericType<T> responseType) <R> TRxInvoker.options(GenericType<R> responseType) Invoke HTTP OPTIONS method for the current request.<T> TSyncInvoker.options(GenericType<T> responseType) Invoke HTTP OPTIONS method for the current request synchronously.<T> Future<T>AsyncInvoker.post(Entity<?> entity, GenericType<T> responseType) Invoke HTTP POST method for the current request asynchronously.<T> CompletionStage<T>CompletionStageRxInvoker.post(Entity<?> entity, GenericType<T> type) <R> TRxInvoker.post(Entity<?> entity, GenericType<R> responseType) Invoke HTTP POST method for the current request.<T> TSyncInvoker.post(Entity<?> entity, GenericType<T> responseType) Invoke HTTP POST method for the current request synchronously.<T> Future<T>AsyncInvoker.put(Entity<?> entity, GenericType<T> responseType) Invoke HTTP PUT method for the current request asynchronously.<T> CompletionStage<T>CompletionStageRxInvoker.put(Entity<?> entity, GenericType<T> type) <R> TRxInvoker.put(Entity<?> entity, GenericType<R> responseType) Invoke HTTP PUT method for the current request.<T> TSyncInvoker.put(Entity<?> entity, GenericType<T> responseType) Invoke HTTP PUT method for the current request synchronously.<T> Future<T>Invocation.submit(GenericType<T> responseType) Submit the request for an asynchronous invocation and receive a future response of the specified generic type back.<T> Future<T>AsyncInvoker.trace(GenericType<T> responseType) Invoke HTTP TRACE method for the current request asynchronously.<T> CompletionStage<T>CompletionStageRxInvoker.trace(GenericType<T> responseType) <R> TRxInvoker.trace(GenericType<R> responseType) Invoke HTTP TRACE method for the current request.<T> TSyncInvoker.trace(GenericType<T> responseType) Invoke HTTP TRACE method for the current request synchronously. -
Uses of GenericType in jakarta.ws.rs.core
Methods in jakarta.ws.rs.core that return GenericTypeModifier and TypeMethodDescriptionstatic GenericTypeGenericType.forInstance(Object instance) Create ageneric typefrom a Javainstance.Methods in jakarta.ws.rs.core with parameters of type GenericTypeModifier and TypeMethodDescriptionEntityPart.Builder.content(T content, GenericType<T> type) Sets the content for this part.<T> TEntityPart.getContent(GenericType<T> type) Converts the content stream for this part to the specified type and returns it.abstract <T> TResponse.readEntity(GenericType<T> entityType) Read the message entity input stream as an instance of specified Java type using aMessageBodyReaderthat supports mapping the message entity stream onto the requested type.abstract <T> TResponse.readEntity(GenericType<T> entityType, Annotation[] annotations) Read the message entity input stream as an instance of specified Java type using aMessageBodyReaderthat supports mapping the message entity stream onto the requested type. -
Uses of GenericType in jakarta.ws.rs.sse
Methods in jakarta.ws.rs.sse with parameters of type GenericTypeModifier and TypeMethodDescriptionOutboundSseEvent.Builder.data(GenericType type, Object data) Set event data and a generic java type of event data.<T> TInboundSseEvent.readData(GenericType<T> type) Read event data as a given generic type.<T> TInboundSseEvent.readData(GenericType<T> type, MediaType mediaType) Read event data as a given generic type. -
Uses of GenericType in org.jboss.resteasy.client.jaxrs
Methods in org.jboss.resteasy.client.jaxrs with parameters of type GenericTypeModifier and TypeMethodDescription<T> org.reactivestreams.Publisher<T>PublisherRxInvoker.delete(GenericType<T> responseType) <T> org.reactivestreams.Publisher<T>PublisherRxInvoker.get(GenericType<T> responseType) <T> org.reactivestreams.Publisher<T>PublisherRxInvoker.method(String name, Entity<?> entity, GenericType<T> responseType) <T> org.reactivestreams.Publisher<T>PublisherRxInvoker.method(String name, GenericType<T> responseType) <T> org.reactivestreams.Publisher<T>PublisherRxInvoker.options(GenericType<T> responseType) <T> org.reactivestreams.Publisher<T>PublisherRxInvoker.post(Entity<?> entity, GenericType<T> type) <T> org.reactivestreams.Publisher<T>PublisherRxInvoker.put(Entity<?> entity, GenericType<T> type) <T> org.reactivestreams.Publisher<T>PublisherRxInvoker.trace(GenericType<T> responseType) -
Uses of GenericType in org.jboss.resteasy.client.jaxrs.internal
Methods in org.jboss.resteasy.client.jaxrs.internal with parameters of type GenericTypeModifier and TypeMethodDescription<T> Future<T>AsynchronousInvoke.delete(GenericType<T> responseType) <T> TClientInvocationBuilder.delete(GenericType<T> responseType) <T> CompletionStage<T>CompletionStageRxInvokerImpl.delete(GenericType<T> responseType) <T> org.reactivestreams.Publisher<T>PublisherRxInvokerImpl.delete(GenericType<T> responseType) static <T> TClientInvocation.extractResult(GenericType<T> responseType, Response response, Annotation[] annotations) Extracts result from response throwing an appropriate exception if not a successful response.<T> Future<T>AsynchronousInvoke.get(GenericType<T> responseType) <T> TClientInvocationBuilder.get(GenericType<T> responseType) <T> CompletionStage<T>CompletionStageRxInvokerImpl.get(GenericType<T> responseType) <T> org.reactivestreams.Publisher<T>PublisherRxInvokerImpl.get(GenericType<T> responseType) protected static <T> AsyncClientHttpEngine.ResultExtractor<T>ClientInvocation.getGenericTypeExtractor(GenericType<T> responseType) <T> TClientInvocation.invoke(GenericType<T> responseType) <T> Future<T>AsynchronousInvoke.method(String name, Entity<?> entity, GenericType<T> responseType) <T> Future<T>AsynchronousInvoke.method(String name, GenericType<T> responseType) <T> TClientInvocationBuilder.method(String name, Entity<?> entity, GenericType<T> responseType) <T> TClientInvocationBuilder.method(String name, GenericType<T> responseType) <T> CompletionStage<T>CompletionStageRxInvokerImpl.method(String name, Entity<?> entity, GenericType<T> responseType) <T> CompletionStage<T>CompletionStageRxInvokerImpl.method(String name, GenericType<T> responseType) <T> org.reactivestreams.Publisher<T>PublisherRxInvokerImpl.method(String name, Entity<?> entity, GenericType<T> responseType) <T> org.reactivestreams.Publisher<T>PublisherRxInvokerImpl.method(String name, GenericType<T> responseType) <T> Future<T>AsynchronousInvoke.options(GenericType<T> responseType) <T> TClientInvocationBuilder.options(GenericType<T> responseType) <T> CompletionStage<T>CompletionStageRxInvokerImpl.options(GenericType<T> responseType) <T> org.reactivestreams.Publisher<T>PublisherRxInvokerImpl.options(GenericType<T> responseType) <T> Future<T>AsynchronousInvoke.patch(Entity<?> entity, GenericType<T> responseType) <T> TClientInvocationBuilder.patch(Entity<?> entity, GenericType<T> responseType) <T> CompletionStage<T>CompletionStageRxInvokerImpl.patch(Entity<?> entity, GenericType<T> responseType) <T> Future<T>AsynchronousInvoke.post(Entity<?> entity, GenericType<T> responseType) <T> TClientInvocationBuilder.post(Entity<?> entity, GenericType<T> responseType) <T> CompletionStage<T>CompletionStageRxInvokerImpl.post(Entity<?> entity, GenericType<T> type) <T> org.reactivestreams.Publisher<T>PublisherRxInvokerImpl.post(Entity<?> entity, GenericType<T> type) <T> Future<T>AsynchronousInvoke.put(Entity<?> entity, GenericType<T> responseType) <T> TClientInvocationBuilder.put(Entity<?> entity, GenericType<T> responseType) <T> CompletionStage<T>CompletionStageRxInvokerImpl.put(Entity<?> entity, GenericType<T> type) <T> org.reactivestreams.Publisher<T>PublisherRxInvokerImpl.put(Entity<?> entity, GenericType<T> type) <T> Future<T>ClientInvocation.submit(GenericType<T> responseType) <T> CompletableFuture<T>ClientInvocation.submitCF(GenericType<T> responseType) <T> Future<T>AsynchronousInvoke.trace(GenericType<T> responseType) <T> TClientInvocationBuilder.trace(GenericType<T> responseType) <T> CompletionStage<T>CompletionStageRxInvokerImpl.trace(GenericType<T> responseType) <T> org.reactivestreams.Publisher<T>PublisherRxInvokerImpl.trace(GenericType<T> responseType) -
Uses of GenericType in org.jboss.resteasy.plugins.providers.multipart
Methods in org.jboss.resteasy.plugins.providers.multipart with parameters of type GenericTypeModifier and TypeMethodDescriptionMultipartFormDataOutput.addFormData(String key, Object entity, GenericType<?> type, MediaType mediaType) MultipartFormDataOutput.addFormData(String key, Object entity, GenericType<?> type, MediaType mediaType, String filename) MultipartFormDataOutput.addFormData(String key, Object entity, GenericType<?> type, MediaType mediaType, String filename, boolean utf8Encode) MultipartOutput.addPart(Object entity, GenericType<?> type, MediaType mediaType) MultipartOutput.addPart(Object entity, GenericType<?> type, MediaType mediaType, String filename) MultipartOutput.addPart(Object entity, GenericType<?> type, MediaType mediaType, String filename, boolean utf8Encode) ResteasyEntityPartBuilder.content(T content, GenericType<T> type) <T> TInputPart.getBody(GenericType<T> type) <T> TMultipartInputImpl.PartImpl.getBody(GenericType<T> type) <T> TMultipartFormDataInput.getFormDataPart(String key, GenericType<T> type) <T> TMultipartFormDataInputImpl.getFormDataPart(String key, GenericType<T> type) -
Uses of GenericType in org.jboss.resteasy.plugins.providers.sse
Subclasses of GenericType in org.jboss.resteasy.plugins.providers.sseFields in org.jboss.resteasy.plugins.providers.sse declared as GenericTypeModifier and TypeFieldDescriptionstatic final GenericType<String>SseConstants.STRING_AS_GENERIC_TYPEMethods in org.jboss.resteasy.plugins.providers.sse with parameters of type GenericTypeModifier and TypeMethodDescriptionOutboundSseEventImpl.BuilderImpl.data(GenericType type, Object data) <T> TInboundSseEventImpl.readData(GenericType<T> type) <T> TInboundSseEventImpl.readData(GenericType<T> type, MediaType mediaType) -
Uses of GenericType in org.jboss.resteasy.specimpl
Methods in org.jboss.resteasy.specimpl with parameters of type GenericTypeModifier and TypeMethodDescription<T> TAbstractBuiltResponse.readEntity(GenericType<T> entityType) <T> TAbstractBuiltResponse.readEntity(GenericType<T> entityType, Annotation[] annotations) -
Uses of GenericType in org.jboss.resteasy.spi.metadata
Methods in org.jboss.resteasy.spi.metadata with parameters of type GenericTypeModifier and TypeMethodDescriptionResourceBuilder.ResourceLocatorBuilder.returnType(GenericType type) ResourceBuilder.ParameterBuilder.type(GenericType type)