Uses of Enum Class
org.jboss.resteasy.reactive.RestResponse.Status
Packages that use RestResponse.Status
-
Uses of RestResponse.Status in org.jboss.resteasy.reactive
Methods in org.jboss.resteasy.reactive that return RestResponse.StatusModifier and TypeMethodDescriptionstatic RestResponse.StatusRestResponse.Status.fromStatusCode(int statusCode) Convert a numerical status code into the corresponding Status.static RestResponse.StatusReturns the enum constant of this class with the specified name.static RestResponse.Status[]RestResponse.Status.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.jboss.resteasy.reactive with parameters of type RestResponse.StatusModifier and TypeMethodDescriptionstatic <IGNORED> RestResponse.ResponseBuilder<IGNORED> RestResponse.ResponseBuilder.create(RestResponse.Status status) Create a new ResponseBuilder with the supplied status.static <T> RestResponse.ResponseBuilder<T> RestResponse.ResponseBuilder.create(RestResponse.Status status, T entity) Create a new ResponseBuilder with the supplied status.RestResponse.ResponseBuilder.status(RestResponse.Status status) Set the status on the ResponseBuilder.static <IGNORED> RestResponse<IGNORED> RestResponse.status(RestResponse.Status status) Create a new RestResponse with the supplied status.static <T> RestResponse<T> RestResponse.status(RestResponse.Status status, T entity) Create a new RestResponse with the supplied status.