Interface Http2Headers
- All Superinterfaces:
Headers<CharSequence, CharSequence, Http2Headers>, Iterable<Map.Entry<CharSequence, CharSequence>>
- All Known Implementing Classes:
DefaultHttp2Headers, EmptyHttp2Headers, ReadOnlyHttp2Headers
A collection of headers sent or received via HTTP/2.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic enumHTTP/2 pseudo-headers names. -
Method Summary
Modifier and TypeMethodDescriptionGets theHttp2Headers.PseudoHeaderName.AUTHORITYheader ornullif there is no such headerauthority(CharSequence value) Sets theHttp2Headers.PseudoHeaderName.AUTHORITYheaderbooleancontains(CharSequence name, CharSequence value, boolean caseInsensitive) Returnstrueif a header with thenameandvalueexists,falseotherwise.iterator()Returns an iterator over all HTTP/2 headers.method()Gets theHttp2Headers.PseudoHeaderName.METHODheader ornullif there is no such headermethod(CharSequence value) Sets theHttp2Headers.PseudoHeaderName.METHODheaderpath()Gets theHttp2Headers.PseudoHeaderName.PATHheader ornullif there is no such headerpath(CharSequence value) Sets theHttp2Headers.PseudoHeaderName.PATHheaderscheme()Gets theHttp2Headers.PseudoHeaderName.SCHEMEheader ornullif there is no such headerscheme(CharSequence value) Sets theHttp2Headers.PseudoHeaderName.SCHEMEheaderstatus()Gets theHttp2Headers.PseudoHeaderName.STATUSheader ornullif there is no such headerstatus(CharSequence value) Sets theHttp2Headers.PseudoHeaderName.STATUSheadervalueIterator(CharSequence name) Equivalent toHeaders.getAll(Object)but no intermediate list is generated.Methods inherited from interface Headers
add, add, add, add, addBoolean, addByte, addChar, addDouble, addFloat, addInt, addLong, addObject, addObject, addObject, addShort, addTimeMillis, clear, contains, contains, containsBoolean, containsByte, containsChar, containsDouble, containsFloat, containsInt, containsLong, containsObject, containsShort, containsTimeMillis, get, get, getAll, getAllAndRemove, getAndRemove, getAndRemove, getBoolean, getBoolean, getBooleanAndRemove, getBooleanAndRemove, getByte, getByte, getByteAndRemove, getByteAndRemove, getChar, getChar, getCharAndRemove, getCharAndRemove, getDouble, getDouble, getDoubleAndRemove, getDoubleAndRemove, getFloat, getFloat, getFloatAndRemove, getFloatAndRemove, getInt, getInt, getIntAndRemove, getIntAndRemove, getLong, getLong, getLongAndRemove, getLongAndRemove, getShort, getShort, getShortAndRemove, getShortAndRemove, getTimeMillis, getTimeMillis, getTimeMillisAndRemove, getTimeMillisAndRemove, isEmpty, names, remove, set, set, set, set, setAll, setBoolean, setByte, setChar, setDouble, setFloat, setInt, setLong, setObject, setObject, setObject, setShort, setTimeMillis, sizeMethods inherited from interface Iterable
forEach, spliterator
-
Method Details
-
iterator
Iterator<Map.Entry<CharSequence, CharSequence>> iterator()Returns an iterator over all HTTP/2 headers. The iteration order is as follows: 1. All pseudo headers (order not specified). 2. All non-pseudo headers (in insertion order).- Specified by:
iteratorin interfaceHeaders<CharSequence, CharSequence, Http2Headers>- Specified by:
iteratorin interfaceIterable<Map.Entry<CharSequence, CharSequence>>
-
valueIterator
Equivalent toHeaders.getAll(Object)but no intermediate list is generated.- Parameters:
name- the name of the header to retrieve- Returns:
- an
Iteratorof header values corresponding toname.
-
method
Sets theHttp2Headers.PseudoHeaderName.METHODheader -
scheme
Sets theHttp2Headers.PseudoHeaderName.SCHEMEheader -
authority
Sets theHttp2Headers.PseudoHeaderName.AUTHORITYheader -
path
Sets theHttp2Headers.PseudoHeaderName.PATHheader -
status
Sets theHttp2Headers.PseudoHeaderName.STATUSheader -
method
CharSequence method()Gets theHttp2Headers.PseudoHeaderName.METHODheader ornullif there is no such header -
scheme
CharSequence scheme()Gets theHttp2Headers.PseudoHeaderName.SCHEMEheader ornullif there is no such header -
authority
CharSequence authority()Gets theHttp2Headers.PseudoHeaderName.AUTHORITYheader ornullif there is no such header -
path
CharSequence path()Gets theHttp2Headers.PseudoHeaderName.PATHheader ornullif there is no such header -
status
CharSequence status()Gets theHttp2Headers.PseudoHeaderName.STATUSheader ornullif there is no such header -
contains
Returnstrueif a header with thenameandvalueexists,falseotherwise.If
caseInsensitiveistruethen a case insensitive compare is done on the value.- Parameters:
name- the name of the header to findvalue- the value of the header to findcaseInsensitive-truethen a case insensitive compare is run to compare values. otherwise a case sensitive compare is run to compare values.
-