Uses of Class
org.jboss.resteasy.reactive.RestResponse.Status
-
Packages that use RestResponse.Status Package Description org.jboss.resteasy.reactive -
-
Uses of RestResponse.Status in org.jboss.resteasy.reactive
Methods in org.jboss.resteasy.reactive that return RestResponse.Status Modifier and Type Method Description static RestResponse.StatusRestResponse.Status. fromStatusCode(int statusCode)Convert a numerical status code into the corresponding Status.static RestResponse.StatusRestResponse.Status. valueOf(String name)Returns the enum constant of this type with the specified name.static RestResponse.Status[]RestResponse.Status. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jboss.resteasy.reactive with parameters of type RestResponse.Status Modifier and Type Method Description static <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<T>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.
-