|
|||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
public interface HttpChunkTrailer
The last HttpChunk
which has trailing headers.
字段摘要 |
---|
从接口 org.jboss.netty.handler.codec.http.HttpChunk 继承的字段 |
---|
LAST_CHUNK |
方法摘要 | |
---|---|
void |
addHeader(java.lang.String name,
java.lang.Object value)
Adds a new trailing header with the specified name and value. |
void |
clearHeaders()
Removes all trailing headers from this trailer. |
boolean |
containsHeader(java.lang.String name)
Returns true if and only if there is a trailing header with
the specified header name. |
java.lang.String |
getHeader(java.lang.String name)
Returns the trailing header value with the specified header name. |
java.util.Set<java.lang.String> |
getHeaderNames()
Returns the Set of all trailing header names that this trailer
contains. |
java.util.List<java.util.Map.Entry<java.lang.String,java.lang.String>> |
getHeaders()
Returns the all header names and values that this trailer contains. |
java.util.List<java.lang.String> |
getHeaders(java.lang.String name)
Returns the trailing header values with the specified header name. |
boolean |
isLast()
Always returns true . |
void |
removeHeader(java.lang.String name)
Removes the trailing header with the specified name. |
void |
setHeader(java.lang.String name,
java.lang.Iterable<?> values)
Sets a new trailing header with the specified name and values. |
void |
setHeader(java.lang.String name,
java.lang.Object value)
Sets a new trailing header with the specified name and value. |
从接口 org.jboss.netty.handler.codec.http.HttpChunk 继承的方法 |
---|
getContent, setContent |
方法详细信息 |
---|
boolean isLast()
true
.
HttpChunk
中的 isLast
java.lang.String getHeader(java.lang.String name)
null
if there is no such headerjava.util.List<java.lang.String> getHeaders(java.lang.String name)
List
of header values. An empty list if there is no
such header.java.util.List<java.util.Map.Entry<java.lang.String,java.lang.String>> getHeaders()
List
of the header name-value pairs. An empty list
if there is no header in this trailer.boolean containsHeader(java.lang.String name)
true
if and only if there is a trailing header with
the specified header name.
java.util.Set<java.lang.String> getHeaderNames()
Set
of all trailing header names that this trailer
contains.
void addHeader(java.lang.String name, java.lang.Object value)
void setHeader(java.lang.String name, java.lang.Object value)
void setHeader(java.lang.String name, java.lang.Iterable<?> values)
void removeHeader(java.lang.String name)
void clearHeaders()
|
|||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |