java.lang.Object
io.helidon.common.http.Http.HeaderValues
- Enclosing class:
Http
Values of commonly used headers.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Http.HeaderValueAccept application/json.static final Http.HeaderValueAccept byte ranges for file download.static final Http.HeaderValueNot accepting byte ranges for file download.static final Http.HeaderValueAccept text/plain with UTF-8.static final Http.HeaderValueConnection close.static final Http.HeaderValueConnection keep-alive.static final Http.HeaderValueContent length with 0 value.static final Http.HeaderValueContent type application/json with no charset.static final Http.HeaderValueContent type octet stream.static final Http.HeaderValueContent type text plain with no charset.static final Http.HeaderValueExpect 100 header.static final Http.HeaderValueChunked transfer encoding. -
Method Summary
-
Field Details
-
ACCEPT_RANGES_BYTES
Accept byte ranges for file download. -
ACCEPT_RANGES_NONE
Not accepting byte ranges for file download. -
TRANSFER_ENCODING_CHUNKED
Chunked transfer encoding. Used inHTTP/1. -
CONNECTION_KEEP_ALIVE
Connection keep-alive. Used inHTTP/1. -
CONNECTION_CLOSE
Connection close. Used inHTTP/1. -
CONTENT_TYPE_JSON
Content type application/json with no charset. -
CONTENT_TYPE_TEXT_PLAIN
Content type text plain with no charset. -
CONTENT_TYPE_OCTET_STREAM
Content type octet stream. -
ACCEPT_JSON
Accept application/json. -
ACCEPT_TEXT
Accept text/plain with UTF-8. -
EXPECT_100
Expect 100 header. -
CONTENT_LENGTH_ZERO
Content length with 0 value.
-