接口 EntityResponse<T>
- 类型参数:
T- the entity type
- 所有超级接口:
ServerResponse
- 所有已知实现类:
DefaultEntityResponseBuilder.CompletionStageEntityResponse,DefaultEntityResponseBuilder.DefaultEntityResponse,DefaultEntityResponseBuilder.PublisherEntityResponse
Entity-specific subtype of
ServerResponse that exposes entity data.- 从以下版本开始:
- 4.0
- 作者:
- Arjen Poutsma, Harry Yang
-
嵌套类概要
嵌套类从接口继承的嵌套类/接口 cn.taketoday.web.handler.function.ServerResponse
ServerResponse.BodyBuilder, ServerResponse.Context, ServerResponse.HeadersBuilder<B extends ServerResponse.HeadersBuilder<B>>, ServerResponse.SseBuilder -
字段概要
从接口继承的字段 cn.taketoday.web.handler.function.ServerResponse
NONE_RETURN_VALUE -
方法概要
修饰符和类型方法说明entity()Return the entity that makes up this response.static <T> EntityResponse.Builder<T>fromObject(T t) Create a builder with the given object.static <T> EntityResponse.Builder<T>fromObject(T t, cn.taketoday.core.ParameterizedTypeReference<T> entityType) Create a builder with the given object and type reference.从接口继承的方法 cn.taketoday.web.handler.function.ServerResponse
cookies, headers, rawStatusCode, statusCode, writeTo
-
方法详细资料
-
entity
T entity()Return the entity that makes up this response. -
fromObject
Create a builder with the given object.- 类型参数:
T- the type of element contained in the entity- 参数:
t- the object that represents the body of the response- 返回:
- the created builder
-
fromObject
static <T> EntityResponse.Builder<T> fromObject(T t, cn.taketoday.core.ParameterizedTypeReference<T> entityType) Create a builder with the given object and type reference.- 类型参数:
T- the type of element contained in the entity- 参数:
t- the object that represents the body of the responseentityType- the type of the entity, used to capture the generic type- 返回:
- the created builder
-