Package com.linecorp.armeria.common
Interface ResponseHeadersBuilder
- All Superinterfaces:
HttpHeadersBuilder
,Iterable<Map.Entry<AsciiString,String>>
public interface ResponseHeadersBuilder extends HttpHeadersBuilder
Builds a
ResponseHeaders
.-
Method Summary
Modifier and Type Method Description ResponseHeadersBuilder
add(CharSequence name, Iterable<String> values)
Adds new headers with the specifiedname
andvalues
.ResponseHeadersBuilder
add(CharSequence name, String value)
Adds a new header with the specifiedname
andvalue
.ResponseHeadersBuilder
add(CharSequence name, String... values)
Adds new headers with the specifiedname
andvalues
.ResponseHeadersBuilder
add(Iterable<? extends Map.Entry<? extends CharSequence,String>> entries)
Adds all header names and values of the specifiedentries
.ResponseHeadersBuilder
addDouble(CharSequence name, double value)
Adds a new header.ResponseHeadersBuilder
addFloat(CharSequence name, float value)
Adds a new header.ResponseHeadersBuilder
addInt(CharSequence name, int value)
Adds a new header.ResponseHeadersBuilder
addLong(CharSequence name, long value)
Adds a new header.ResponseHeadersBuilder
addObject(CharSequence name, Iterable<?> values)
Adds a new header with the specified name and values.ResponseHeadersBuilder
addObject(CharSequence name, Object value)
Adds a new header.ResponseHeadersBuilder
addObject(CharSequence name, Object... values)
Adds a new header with the specified name and values.ResponseHeadersBuilder
addObject(Iterable<? extends Map.Entry<? extends CharSequence,?>> entries)
Adds all header names and values of the specifiedentries
.ResponseHeadersBuilder
addTimeMillis(CharSequence name, long value)
Adds a new header.ResponseHeaders
build()
Returns a newly createdResponseHeaders
with the entries in this builder.ResponseHeadersBuilder
clear()
Removes all headers.boolean
contains(CharSequence name)
Returnstrue
if a header with thename
exists,false
otherwise.boolean
contains(CharSequence name, String value)
Returnstrue
if a header with thename
andvalue
exists.boolean
containsDouble(CharSequence name, double value)
Returnstrue
if a header with thename
andvalue
exists.boolean
containsFloat(CharSequence name, float value)
Returnstrue
if a header with thename
andvalue
exists.boolean
containsInt(CharSequence name, int value)
Returnstrue
if a header with thename
andvalue
exists.boolean
containsLong(CharSequence name, long value)
Returnstrue
if a header with thename
andvalue
exists.boolean
containsObject(CharSequence name, Object value)
Returnstrue
if a header with thename
andvalue
exists.boolean
containsTimeMillis(CharSequence name, long value)
Returnstrue
if a header with thename
andvalue
exists.MediaType
contentType()
Returns the parsed"content-type"
header.ResponseHeadersBuilder
contentType(MediaType contentType)
Sets the"content-type"
header.ResponseHeadersBuilder
endOfStream(boolean endOfStream)
Sets whether the headers will be the last frame in an HTTP/2 stream.void
forEach(BiConsumer<AsciiString,String> action)
Invokes the specifiedaction
for all header entries.void
forEachValue(CharSequence name, Consumer<String> action)
Invokes the specifiedaction
for all values of the headers with the specifiedname
.String
get(CharSequence name)
Returns the value of a header with the specifiedname
.String
get(CharSequence name, String defaultValue)
Returns the value of a header with the specifiedname
.List<String>
getAll(CharSequence name)
Returns all values for the header with the specified name.Double
getDouble(CharSequence name)
Returns thedouble
value of a header with the specifiedname
.double
getDouble(CharSequence name, double defaultValue)
Returns thedouble
value of a header with the specifiedname
.Float
getFloat(CharSequence name)
Returns thefloat
value of a header with the specifiedname
.float
getFloat(CharSequence name, float defaultValue)
Returns thefloat
value of a header with the specifiedname
.Integer
getInt(CharSequence name)
Returns theint
value of a header with the specifiedname
.int
getInt(CharSequence name, int defaultValue)
Returns theint
value of a header with the specifiedname
.Long
getLong(CharSequence name)
Returns thelong
value of a header with the specifiedname
.long
getLong(CharSequence name, long defaultValue)
Returns thelong
value of a header with the specifiedname
.Long
getTimeMillis(CharSequence name)
Returns the value of a header with the specifiedname
in milliseconds.long
getTimeMillis(CharSequence name, long defaultValue)
Returns the value of a header with the specifiedname
in milliseconds.boolean
isEmpty()
Returnstrue
if this headers does not contain any entries.boolean
isEndOfStream()
Tells whether the headers correspond to the last frame in an HTTP/2 stream.Iterator<Map.Entry<AsciiString,String>>
iterator()
Returns anIterator
that yields all header entries.Set<AsciiString>
names()
Returns aSet
of all header names.ResponseHeadersBuilder
removeAndThen(CharSequence name)
Removes all headers with the specifiedname
.ResponseHeadersBuilder
set(CharSequence name, Iterable<String> values)
Sets a new header with the specified name and values.ResponseHeadersBuilder
set(CharSequence name, String value)
Sets a header with the specified name and value.ResponseHeadersBuilder
set(CharSequence name, String... values)
Sets a header with the specified name and values.ResponseHeadersBuilder
set(Iterable<? extends Map.Entry<? extends CharSequence,String>> entries)
Retains all current headers but callsHttpHeadersBuilder.set(CharSequence, String)
for each header in the specifiedentries
.ResponseHeadersBuilder
setDouble(CharSequence name, double value)
Sets a header with the specifiedname
tovalue
.ResponseHeadersBuilder
setFloat(CharSequence name, float value)
Sets a header with the specifiedname
tovalue
.ResponseHeadersBuilder
setIfAbsent(Iterable<? extends Map.Entry<? extends CharSequence,String>> entries)
Copies the entries missing in this headers from the specifiedentries
.ResponseHeadersBuilder
setInt(CharSequence name, int value)
Sets a header with the specifiedname
tovalue
.ResponseHeadersBuilder
setLong(CharSequence name, long value)
Sets a header with the specifiedname
tovalue
.ResponseHeadersBuilder
setObject(CharSequence name, Iterable<?> values)
Sets a header with the specified name and values.ResponseHeadersBuilder
setObject(CharSequence name, Object value)
Sets a new header.ResponseHeadersBuilder
setObject(CharSequence name, Object... values)
Sets a header with the specified name and values.ResponseHeadersBuilder
setObject(Iterable<? extends Map.Entry<? extends CharSequence,?>> entries)
Retains all current headers but callsHttpHeadersBuilder.setObject(CharSequence, Object)
for each entry in the specifiedentries
.ResponseHeadersBuilder
setTimeMillis(CharSequence name, long value)
Sets a header with the specifiedname
tovalue
.int
size()
Returns the number of headers.ResponseHeadersBuilder
sizeHint(int sizeHint)
Specifies the hint about the number of headers which may improve the memory efficiency and performance of the underlying data structure.HttpStatus
status()
Returns the value of the":status"
header as anHttpStatus
.ResponseHeadersBuilder
status(int statusCode)
Sets the":status"
header.ResponseHeadersBuilder
status(HttpStatus status)
Sets the":status"
header.default Stream<Map.Entry<AsciiString,String>>
stream()
Returns aStream
that yields all header entries.Iterator<String>
valueIterator(CharSequence name)
Returns anIterator
that yields all values of the headers with the specifiedname
.default Stream<String>
valueStream(CharSequence name)
Returns aStream
that yields all values of the headers with the specifiedname
.Methods inherited from interface com.linecorp.armeria.common.HttpHeadersBuilder
getAllAndRemove, getAndRemove, getAndRemove, getDoubleAndRemove, getDoubleAndRemove, getFloatAndRemove, getFloatAndRemove, getIntAndRemove, getIntAndRemove, getLongAndRemove, getLongAndRemove, getTimeMillisAndRemove, getTimeMillisAndRemove, remove
-
Method Details
-
build
ResponseHeaders build()Returns a newly createdResponseHeaders
with the entries in this builder.- Specified by:
build
in interfaceHttpHeadersBuilder
- Throws:
IllegalStateException
- if this builder does not have":status"
header set.
-
status
Sets the":status"
header. -
status
Sets the":status"
header. -
sizeHint
Description copied from interface:HttpHeadersBuilder
Specifies the hint about the number of headers which may improve the memory efficiency and performance of the underlying data structure.- Specified by:
sizeHint
in interfaceHttpHeadersBuilder
- Returns:
this
-
endOfStream
Description copied from interface:HttpHeadersBuilder
Sets whether the headers will be the last frame in an HTTP/2 stream.- Specified by:
endOfStream
in interfaceHttpHeadersBuilder
-
contentType
Description copied from interface:HttpHeadersBuilder
Sets the"content-type"
header.- Specified by:
contentType
in interfaceHttpHeadersBuilder
-
add
Description copied from interface:HttpHeadersBuilder
Adds a new header with the specifiedname
andvalue
.- Specified by:
add
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalue
- the header value- Returns:
this
-
add
Description copied from interface:HttpHeadersBuilder
Adds new headers with the specifiedname
andvalues
. This method is semantically equivalent tofor (String value : values) { builder.add(name, value); }
- Specified by:
add
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalues
- the header values- Returns:
this
-
add
Description copied from interface:HttpHeadersBuilder
Adds new headers with the specifiedname
andvalues
. This method is semantically equivalent tofor (String value : values) { builder.add(name, value); }
- Specified by:
add
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalues
- the header values- Returns:
this
-
add
Description copied from interface:HttpHeadersBuilder
Adds all header names and values of the specifiedentries
.- Specified by:
add
in interfaceHttpHeadersBuilder
- Returns:
this
-
addObject
Description copied from interface:HttpHeadersBuilder
Adds a new header. The specified header value is converted into aString
, as explained in Specifying a non-String header value.- Specified by:
addObject
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalue
- the header value- Returns:
this
-
addObject
Description copied from interface:HttpHeadersBuilder
Adds a new header with the specified name and values. The specified header values are converted intoString
s, as explained in Specifying a non-String header value. This method is equivalent to:for (Object v : values) { builder.addObject(name, v); }
- Specified by:
addObject
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalues
- the header values- Returns:
this
-
addObject
Description copied from interface:HttpHeadersBuilder
Adds a new header with the specified name and values. The specified header values are converted intoString
s, as explained in Specifying a non-String header value. This method is equivalent to:for (Object v : values) { builder.addObject(name, v); }
- Specified by:
addObject
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalues
- the header values- Returns:
this
-
addObject
Description copied from interface:HttpHeadersBuilder
Adds all header names and values of the specifiedentries
. The specified header values are converted intoString
s, as explained in Specifying a non-String header value.- Specified by:
addObject
in interfaceHttpHeadersBuilder
- Returns:
this
-
addInt
Description copied from interface:HttpHeadersBuilder
Adds a new header.- Specified by:
addInt
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalue
- the header value- Returns:
this
-
addLong
Description copied from interface:HttpHeadersBuilder
Adds a new header.- Specified by:
addLong
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalue
- the header value- Returns:
this
-
addFloat
Description copied from interface:HttpHeadersBuilder
Adds a new header.- Specified by:
addFloat
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalue
- the header value- Returns:
this
-
addDouble
Description copied from interface:HttpHeadersBuilder
Adds a new header.- Specified by:
addDouble
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalue
- the header value- Returns:
this
-
addTimeMillis
Description copied from interface:HttpHeadersBuilder
Adds a new header.- Specified by:
addTimeMillis
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalue
- the header value- Returns:
this
-
set
Description copied from interface:HttpHeadersBuilder
Sets a header with the specified name and value. Any existing headers with the same name are overwritten.- Specified by:
set
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalue
- the header value- Returns:
this
-
set
Description copied from interface:HttpHeadersBuilder
Sets a new header with the specified name and values. This method is equivalent tobuilder.remove(name); for (String v : values) { builder.add(name, v); }
- Specified by:
set
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalues
- the header values- Returns:
this
-
set
Description copied from interface:HttpHeadersBuilder
Sets a header with the specified name and values. Any existing headers with the specified name are removed. This method is equivalent to:builder.remove(name); for (String v : values) { builder.add(name, v); }
- Specified by:
set
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalues
- the header values- Returns:
this
-
set
Description copied from interface:HttpHeadersBuilder
Retains all current headers but callsHttpHeadersBuilder.set(CharSequence, String)
for each header in the specifiedentries
.- Specified by:
set
in interfaceHttpHeadersBuilder
- Parameters:
entries
- the headers used to set the header values- Returns:
this
-
setIfAbsent
ResponseHeadersBuilder setIfAbsent(Iterable<? extends Map.Entry<? extends CharSequence,String>> entries)Description copied from interface:HttpHeadersBuilder
Copies the entries missing in this headers from the specifiedentries
. This method is a shortcut for:headers.names().forEach(name -> { if (!builder.contains(name)) { builder.set(name, headers.getAll(name)); } });
- Specified by:
setIfAbsent
in interfaceHttpHeadersBuilder
- Returns:
this
-
setObject
Description copied from interface:HttpHeadersBuilder
Sets a new header. Any existing headers with the specified name are removed. The specified header value is converted into aString
, as explained in Specifying a non-String header value.- Specified by:
setObject
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalue
- the value of the header- Returns:
this
-
setObject
Description copied from interface:HttpHeadersBuilder
Sets a header with the specified name and values. Any existing headers with the specified name are removed. The specified header values are converted intoString
s, as explained in Specifying a non-String header value. This method is equivalent to:builder.remove(name); for (Object v : values) { builder.addObject(name, v); }
- Specified by:
setObject
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalues
- the values of the header- Returns:
this
-
setObject
Description copied from interface:HttpHeadersBuilder
Sets a header with the specified name and values. Any existing headers with the specified name are removed. The specified header values are converted intoString
s, as explained in Specifying a non-String header value. This method is equivalent to:builder.remove(name); for (Object v : values) { builder.addObject(name, v); }
- Specified by:
setObject
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalues
- the values of the header- Returns:
this
-
setObject
Description copied from interface:HttpHeadersBuilder
Retains all current headers but callsHttpHeadersBuilder.setObject(CharSequence, Object)
for each entry in the specifiedentries
. The specified header values are converted intoString
s, as explained in Specifying a non-String header value.- Specified by:
setObject
in interfaceHttpHeadersBuilder
- Parameters:
entries
- the headers used to set the values in this instance- Returns:
this
-
setInt
Description copied from interface:HttpHeadersBuilder
Sets a header with the specifiedname
tovalue
. This will remove all previous values associated withname
.- Specified by:
setInt
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalue
- the header value- Returns:
this
-
setLong
Description copied from interface:HttpHeadersBuilder
Sets a header with the specifiedname
tovalue
. This will remove all previous values associated withname
.- Specified by:
setLong
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalue
- the header value- Returns:
this
-
setFloat
Description copied from interface:HttpHeadersBuilder
Sets a header with the specifiedname
tovalue
. This will remove all previous values associated withname
.- Specified by:
setFloat
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalue
- the header value- Returns:
this
-
setDouble
Description copied from interface:HttpHeadersBuilder
Sets a header with the specifiedname
tovalue
. This will remove all previous values associated withname
.- Specified by:
setDouble
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalue
- the header value- Returns:
this
-
setTimeMillis
Description copied from interface:HttpHeadersBuilder
Sets a header with the specifiedname
tovalue
. This will remove all previous values associated withname
.- Specified by:
setTimeMillis
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header namevalue
- the header value- Returns:
this
-
removeAndThen
Description copied from interface:HttpHeadersBuilder
Removes all headers with the specifiedname
. UnlikeHttpHeadersBuilder.remove(CharSequence)
this method returns itself so that the caller can chain the invocations.- Specified by:
removeAndThen
in interfaceHttpHeadersBuilder
- Parameters:
name
- the header name- Returns:
this
-
clear
ResponseHeadersBuilder clear()Description copied from interface:HttpHeadersBuilder
Removes all headers. After a call to this method,size()
becomes0
.- Specified by:
clear
in interfaceHttpHeadersBuilder
- Returns:
this
-
isEndOfStream
boolean isEndOfStream()Tells whether the headers correspond to the last frame in an HTTP/2 stream. -
contentType
Returns the parsed"content-type"
header.- Returns:
- the parsed
MediaType
if present and valid, ornull
otherwise.
-
get
Returns the value of a header with the specifiedname
. If there are more than one value for the specifiedname
, the first value in insertion order is returned.- Parameters:
name
- the name of the header to retrieve- Returns:
- the first header value if the header is found, or
null
if there's no such header
-
get
Returns the value of a header with the specifiedname
. If there are more than one value for the specifiedname
, the first value in insertion order is returned.- Parameters:
name
- the name of the header to retrievedefaultValue
- the default value- Returns:
- the first header value or
defaultValue
if there is no such header
-
getAll
Returns all values for the header with the specified name. The returnedList
can't be modified. -
getInt
Returns theint
value of a header with the specifiedname
. If there are more than one value for the specifiedname
, the first value in insertion order is returned.- Parameters:
name
- the name of the header to retrieve- Returns:
- the
int
value of the first value in insertion order ornull
if there is no such header or it can't be converted toint
.
-
getInt
Returns theint
value of a header with the specifiedname
. If there are more than one value for the specifiedname
, the first value in insertion order is returned.- Parameters:
name
- the name of the header to retrievedefaultValue
- the default value- Returns:
- the
int
value of the first value in insertion order ordefaultValue
if there is no such header or it can't be converted toint
.
-
getLong
Returns thelong
value of a header with the specifiedname
. If there are more than one value for the specifiedname
, the first value in insertion order is returned.- Parameters:
name
- the name of the header to retrieve- Returns:
- the
long
value of the first value in insertion order ornull
if there is no such header or it can't be converted tolong
.
-
getLong
Returns thelong
value of a header with the specifiedname
. If there are more than one value for the specifiedname
, the first value in insertion order is returned.- Parameters:
name
- the name of the header to retrievedefaultValue
- the default value- Returns:
- the
long
value of the first value in insertion order ordefaultValue
if there is no such header or it can't be converted tolong
.
-
getFloat
Returns thefloat
value of a header with the specifiedname
. If there are more than one value for the specifiedname
, the first value in insertion order is returned.- Parameters:
name
- the name of the header to retrieve- Returns:
- the
float
value of the first value in insertion order ornull
if there is no such header or it can't be converted tofloat
.
-
getFloat
Returns thefloat
value of a header with the specifiedname
. If there are more than one value for the specifiedname
, the first value in insertion order is returned.- Parameters:
name
- the name of the header to retrievedefaultValue
- the default value- Returns:
- the
float
value of the first value in insertion order ordefaultValue
if there is no such header or it can't be converted tofloat
.
-
getDouble
Returns thedouble
value of a header with the specifiedname
. If there are more than one value for the specifiedname
, the first value in insertion order is returned.- Parameters:
name
- the name of the header to retrieve- Returns:
- the
double
value of the first value in insertion order ornull
if there is no such header or it can't be converted todouble
.
-
getDouble
Returns thedouble
value of a header with the specifiedname
. If there are more than one value for the specifiedname
, the first value in insertion order is returned.- Parameters:
name
- the name of the header to retrievedefaultValue
- the default value- Returns:
- the
double
value of the first value in insertion order ordefaultValue
if there is no such header or it can't be converted todouble
.
-
getTimeMillis
Returns the value of a header with the specifiedname
in milliseconds. If there are more than one value for the specifiedname
, the first value in insertion order is returned.- Parameters:
name
- the name of the header to retrieve- Returns:
- the milliseconds value of the first value in insertion order or
null
if there is no such header or it can't be converted to milliseconds.
-
getTimeMillis
Returns the value of a header with the specifiedname
in milliseconds. If there are more than one value for the specifiedname
, the first value in insertion order is returned.- Parameters:
name
- the name of the header to retrievedefaultValue
- the default value- Returns:
- the milliseconds value of the first value in insertion order or
defaultValue
if there is no such header or it can't be converted to milliseconds.
-
contains
Returnstrue
if a header with thename
exists,false
otherwise.- Parameters:
name
- the header name
-
contains
Returnstrue
if a header with thename
andvalue
exists.- Parameters:
name
- the header namevalue
- the header value of the header to find
-
containsObject
Returnstrue
if a header with thename
andvalue
exists.- Parameters:
name
- the header namevalue
- the header value- Returns:
true
if the header exists.false
otherwise
-
containsInt
Returnstrue
if a header with thename
andvalue
exists.- Parameters:
name
- the header namevalue
- the header value- Returns:
true
if the header exists.false
otherwise
-
containsLong
Returnstrue
if a header with thename
andvalue
exists.- Parameters:
name
- the header namevalue
- the header value- Returns:
true
if the header exists.false
otherwise
-
containsFloat
Returnstrue
if a header with thename
andvalue
exists.- Parameters:
name
- the header namevalue
- the header value- Returns:
true
if the header exists.false
otherwise
-
containsDouble
Returnstrue
if a header with thename
andvalue
exists.- Parameters:
name
- the header namevalue
- the header value- Returns:
true
if the header exists.false
otherwise
-
containsTimeMillis
Returnstrue
if a header with thename
andvalue
exists.- Parameters:
name
- the header namevalue
- the header value- Returns:
true
if the header exists.false
otherwise
-
size
int size()Returns the number of headers. -
isEmpty
boolean isEmpty()Returnstrue
if this headers does not contain any entries. -
names
Set<AsciiString> names() -
iterator
Iterator<Map.Entry<AsciiString,String>> iterator()Returns anIterator
that yields all header entries. The iteration order is as follows:- All pseudo headers (order not specified).
- All non-pseudo headers (in insertion order).
- Specified by:
iterator
in interfaceIterable<Map.Entry<AsciiString,String>>
-
valueIterator
Returns anIterator
that yields all values of the headers with the specifiedname
. -
forEach
Invokes the specifiedaction
for all header entries. -
forEachValue
Invokes the specifiedaction
for all values of the headers with the specifiedname
. -
stream
Returns aStream
that yields all header entries. -
valueStream
Returns aStream
that yields all values of the headers with the specifiedname
. -
status
HttpStatus status()Returns the value of the":status"
header as anHttpStatus
. If the value is malformed,HttpStatus.UNKNOWN
will be returned.- Throws:
IllegalStateException
- if there is no such header.
-