Uses of Enum Class
com.openinventor.remoteviz.rendering.HTTPResponse.HTTPStatus
Packages that use HTTPResponse.HTTPStatus
-
Uses of HTTPResponse.HTTPStatus in com.openinventor.remoteviz.rendering
Methods in com.openinventor.remoteviz.rendering that return HTTPResponse.HTTPStatusModifier and TypeMethodDescriptionHTTPResponse.getStatusCode()
Returns the HTTP status.static HTTPResponse.HTTPStatus
HTTPResponse.HTTPStatus.valueOf
(int val) Returns the enum constant of this type with the specified integer valuestatic HTTPResponse.HTTPStatus
Returns the enum constant of this class with the specified name.static HTTPResponse.HTTPStatus[]
HTTPResponse.HTTPStatus.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.openinventor.remoteviz.rendering with parameters of type HTTPResponse.HTTPStatusModifier and TypeMethodDescriptionstatic String
HTTPResponse.getReasonPhrase
(HTTPResponse.HTTPStatus status) Returns the standard HTTP reason phrase for a HTTP status code.Constructors in com.openinventor.remoteviz.rendering with parameters of type HTTPResponse.HTTPStatusModifierConstructorDescriptionHTTPResponse
(HTTPResponse.HTTPStatus statusCode) Creates a HTTP/1.1 response with the given status and a standard reason phrase.HTTPResponse
(HTTPResponse.HTTPStatus statusCode, String reason) Creates a HTTP/1.1 response with the given status and reason phrase.HTTPResponse
(HTTPResponse.HTTPStatus statusCode, String reason, String body) Creates a HTTP/1.1 response with the given status, reason phrase and message body data.HTTPResponse
(HTTPResponse.HTTPStatus statusCode, String reason, String body, int versionMajor, int versionMinor, HTTPHeaders headers) Creates a HTTP response with the given status, reason phrase, message body data, version and headers.