Uses of Enum
org.eclipse.jetty.http.HttpVersion
Packages that use HttpVersion
-
Uses of HttpVersion in org.eclipse.jetty.http
Fields in org.eclipse.jetty.http with type parameters of type HttpVersionModifier and TypeFieldDescriptionstatic final org.eclipse.jetty.util.Index<HttpVersion>HttpVersion.CACHEMethods in org.eclipse.jetty.http that return HttpVersionModifier and TypeMethodDescriptionstatic HttpVersionHttpVersion.fromString(String version) Case insensitive fromString() conversionstatic HttpVersionHttpVersion.fromVersion(int version) Http1FieldPreEncoder.getHttpVersion()HttpFieldPreEncoder.getHttpVersion()The major version this encoder is for.MetaData.getHttpVersion()HttpTester.Message.getVersion()static HttpVersionHttpVersion.lookAheadGet(byte[] bytes, int position, int limit) Optimised lookup to find an Http Version and whitespace in a byte array.static HttpVersionHttpVersion.lookAheadGet(ByteBuffer buffer) Optimised lookup to find an HTTP Version and trailing white space in a byte array.static HttpVersionReturns the enum constant of this type with the specified name.static HttpVersion[]HttpVersion.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.eclipse.jetty.http with parameters of type HttpVersionModifier and TypeMethodDescriptionintPreEncodedHttpField.getEncodedLength(HttpVersion version) voidPreEncodedHttpField.putTo(ByteBuffer bufferInFillMode, HttpVersion version) voidHttpTester.Message.setVersion(HttpVersion version) voidHttpParser.RequestHandler.startRequest(String method, String uri, HttpVersion version) This is the method called by parser when the HTTP request line is parsedvoidHttpTester.Request.startRequest(String method, String uri, HttpVersion version) voidHttpParser.ResponseHandler.startResponse(HttpVersion version, int status, String reason) This is the method called by parser when the HTTP request line is parsedvoidHttpTester.Response.startResponse(HttpVersion version, int status, String reason) Constructors in org.eclipse.jetty.http with parameters of type HttpVersionModifierConstructorDescriptionMetaData(HttpVersion version, HttpFields fields) MetaData(HttpVersion version, HttpFields fields, long contentLength) MetaData(HttpVersion version, HttpFields fields, long contentLength, Supplier<HttpFields> trailerSupplier) Request(String method, String scheme, HostPortHttpField authority, String uri, HttpVersion version, HttpFields fields, long contentLength) Request(String method, HttpURI uri, HttpVersion version, HttpFields fields) Request(String method, HttpURI uri, HttpVersion version, HttpFields fields, long contentLength) Request(String method, HttpURI uri, HttpVersion version, HttpFields fields, long contentLength, Supplier<HttpFields> trailers) Response(HttpVersion version, int status, String reason, HttpFields fields, long contentLength) Response(HttpVersion version, int status, String reason, HttpFields fields, long contentLength, Supplier<HttpFields> trailers) Response(HttpVersion version, int status, HttpFields fields) Response(HttpVersion version, int status, HttpFields fields, long contentLength)