|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use TypeLiteral | |
|---|---|
| javax.ws.rs.client | The JAX-RS client API |
| javax.ws.rs.core | Low-level interfaces and annotations used to create RESTful service resources. |
| Uses of TypeLiteral in javax.ws.rs.client |
|---|
| Methods in javax.ws.rs.client with parameters of type TypeLiteral | ||
|---|---|---|
|
AsyncInvoker.delete(TypeLiteral<T> responseType)
|
|
|
SyncInvoker.delete(TypeLiteral<T> responseType)
|
|
|
AsyncInvoker.get(TypeLiteral<T> responseType)
|
|
|
SyncInvoker.get(TypeLiteral<T> responseType)
|
|
|
Invocation.invoke(TypeLiteral<T> responseType)
Synchronously invoke the request and receive a response of the specified generic type back. |
|
|
AsyncInvoker.method(String name,
Entity<?> entity,
TypeLiteral<T> responseType)
|
|
|
SyncInvoker.method(String name,
Entity<?> entity,
TypeLiteral<T> responseType)
|
|
|
AsyncInvoker.method(String name,
TypeLiteral<T> responseType)
|
|
|
SyncInvoker.method(String name,
TypeLiteral<T> responseType)
|
|
|
AsyncInvoker.options(TypeLiteral<T> responseType)
|
|
|
SyncInvoker.options(TypeLiteral<T> responseType)
|
|
|
AsyncInvoker.post(Entity<?> entity,
TypeLiteral<T> responseType)
|
|
|
SyncInvoker.post(Entity<?> entity,
TypeLiteral<T> responseType)
|
|
|
AsyncInvoker.put(Entity<?> entity,
TypeLiteral<T> responseType)
|
|
|
SyncInvoker.put(Entity<?> entity,
TypeLiteral<T> responseType)
|
|
|
Invocation.submit(TypeLiteral<T> responseType)
Submit the request for an asynchronous invocation and receive a future response of the specified generic type back. |
|
|
AsyncInvoker.trace(Entity<?> entity,
TypeLiteral<T> responseType)
|
|
|
SyncInvoker.trace(Entity<?> entity,
TypeLiteral<T> responseType)
|
|
| Uses of TypeLiteral in javax.ws.rs.core |
|---|
| Methods in javax.ws.rs.core that return TypeLiteral | ||
|---|---|---|
static
|
TypeLiteral.of(Class<?> rawType,
Type type)
Construct a type literal instance with programmatically set values of type and raw type. |
|
| Methods in javax.ws.rs.core with parameters of type TypeLiteral | ||
|---|---|---|
abstract
|
Response.readEntity(TypeLiteral<T> entityType)
Read the message entity as an instance of specified (generic) Java type using a MessageBodyReader that supports mapping the
message entity stream onto the requested type. |
|
|
Request.readEntity(TypeLiteral<T> entityType)
Read the message entity as an instance of specified (generic) Java type using a MessageBodyReader that supports mapping the
message entity stream onto the requested type. |
|
abstract
|
Response.readEntity(TypeLiteral<T> entityType,
Annotation[] annotations)
Read the message entity as an instance of specified (generic) Java type using a MessageBodyReader that supports mapping the
message entity stream onto the requested type. |
|
|
Request.readEntity(TypeLiteral<T> entityType,
Annotation[] annotations)
Read the message entity as an instance of specified (generic) Java type using a MessageBodyReader that supports mapping the
message entity stream onto the requested type. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||