接口 EntityResponse<T>

    • 方法详细资料

      • entity

        T entity()
        Return the entity that makes up this response.
      • fromObject

        static <T> EntityResponse.Builder<T> fromObject​(T t)
        Create a builder with the given object.
        类型参数:
        T - the type of element contained in the publisher
        参数:
        t - the object that represents the body of the response
        返回:
        the created builder
      • fromObject

        static <T> EntityResponse.Builder<T> fromObject​(T t,
                                                        ParameterizedTypeReference<T> entityType)
        Create a builder with the given object and type reference.
        类型参数:
        T - the type of element contained in the publisher
        参数:
        t - the object that represents the body of the response
        entityType - the type of the entity, used to capture the generic type
        返回:
        the created builder