Uses of Interface
io.helidon.common.http.Http.HeaderValue
-
Uses of Http.HeaderValue in io.helidon.common.http
Subinterfaces of Http.HeaderValue in io.helidon.common.httpModifier and TypeInterfaceDescriptionstatic interfaceMutable header value.Classes in io.helidon.common.http that implement Http.HeaderValueModifier and TypeClassDescriptionclassA generic representation of theContent-Dispositionheader.Fields in io.helidon.common.http declared as Http.HeaderValueModifier and TypeFieldDescriptionstatic final Http.HeaderValueHttp.HeaderValues.ACCEPT_JSONAccept application/json.static final Http.HeaderValueHttp.HeaderValues.ACCEPT_RANGES_BYTESAccept byte ranges for file download.static final Http.HeaderValueHttp.HeaderValues.ACCEPT_RANGES_NONENot accepting byte ranges for file download.static final Http.HeaderValueHttp.HeaderValues.ACCEPT_TEXTAccept text/plain with UTF-8.static final Http.HeaderValueHttp.HeaderValues.CONNECTION_CLOSEConnection close.static final Http.HeaderValueHttp.HeaderValues.CONNECTION_KEEP_ALIVEConnection keep-alive.static final Http.HeaderValueHttp.HeaderValues.CONTENT_LENGTH_ZEROContent length with 0 value.static final Http.HeaderValueHttp.HeaderValues.CONTENT_TYPE_JSONContent type application/json with no charset.static final Http.HeaderValueHttp.HeaderValues.CONTENT_TYPE_OCTET_STREAMContent type octet stream.static final Http.HeaderValueHttp.HeaderValues.CONTENT_TYPE_TEXT_PLAINContent type text plain with no charset.static final Http.HeaderValueHttp.HeaderValues.EXPECT_100Expect 100 header.static final Http.HeaderValueServerRequestHeaders.HUC_ACCEPT_DEFAULTHeader value of the non compliantAcceptheader sent byHttpURLConnectionwhen none is set.static final Http.HeaderValueHttp.HeaderValues.TRANSFER_ENCODING_CHUNKEDChunked transfer encoding.Methods in io.helidon.common.http that return Http.HeaderValueModifier and TypeMethodDescriptionstatic Http.HeaderValueHttp.Header.create(Http.HeaderName name, boolean changing, boolean sensitive, String... values) Create a new header.static Http.HeaderValueHttp.Header.create(Http.HeaderName name, int value) Create a new header with a single value.static Http.HeaderValueHttp.Header.create(Http.HeaderName name, long value) Create a new header with a single value.static Http.HeaderValueHttp.Header.create(Http.HeaderName name, LazyString value) Create a new header with a single value.static Http.HeaderValueHttp.Header.create(Http.HeaderName name, String value) Create a new header with a single value.static Http.HeaderValueHttp.Header.create(Http.HeaderName name, String... values) Create a new header.static Http.HeaderValueHttp.Header.create(Http.HeaderName name, List<String> values) Create a new header.static Http.HeaderValueHttp.Header.createCached(Http.HeaderName name, boolean changing, boolean sensitive, String value) Create and cache byte value.static Http.HeaderValueHttp.Header.createCached(Http.HeaderName name, int value) Create and cache byte value.static Http.HeaderValueHttp.Header.createCached(Http.HeaderName name, String value) Create and cache byte value.static Http.HeaderValueHttp.Header.createCached(String name, String value) Create and cache byte value.Headers.get(Http.HeaderName name) Get a header value.Methods in io.helidon.common.http with parameters of type Http.HeaderValueModifier and TypeMethodDescriptionWritableHeaders.add(Http.HeaderValue header) Add a header or add a header value if the header is already present.booleanHeaders.contains(Http.HeaderValue value) Whether these headers contain a header with the provided name and value.static Http.HeaderValueWriteableHttp.HeaderValueWriteable.create(Http.HeaderValue header) Create a new mutable header from an existing header.DirectHandler.TransportResponse.Builder.header(Http.HeaderValue header) Set a header (if exists, it would be replaced).RequestException.Builder.header(Http.HeaderValue header) Response header to be added to error response.WritableHeaders.set(Http.HeaderValue header) Set a header and replace it if it already existed.WritableHeaders.setIfAbsent(Http.HeaderValue header) Set a value of a header unless it is already present.Method parameters in io.helidon.common.http with type arguments of type Http.HeaderValueModifier and TypeMethodDescriptionWritableHeaders.remove(Http.HeaderName name, Consumer<Http.HeaderValue> removedConsumer) Remove a header.