- java.lang.Object
-
- swim.http.HttpPart
-
- swim.http.HttpChunkTrailer
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HttpChunkTrailer
create(FingerTrieSeq<HttpHeader> headers)
static HttpChunkTrailer
create(HttpHeader... headers)
<T> Output<T>
debug(Output<T> output)
Writes a developer readable, debug-formatted string representation of this object tooutput
.static HttpChunkTrailer
empty()
boolean
equals(Object other)
int
hashCode()
FingerTrieSeq<HttpHeader>
headers()
Writer<?,?>
httpWriter(HttpWriter http)
static HttpChunkTrailer
parse(String chunkTrailer)
String
toString()
Writer<?,?>
writeHttp(Output<?> output, HttpWriter http)
-
Methods inherited from class swim.http.HttpPart
httpWriter, toHttp, writeHttp
-
-
-
-
Method Detail
-
headers
public FingerTrieSeq<HttpHeader> headers()
-
httpWriter
public Writer<?,?> httpWriter(HttpWriter http)
- Specified by:
httpWriter
in classHttpPart
-
writeHttp
public Writer<?,?> writeHttp(Output<?> output, HttpWriter http)
-
debug
public <T> Output<T> debug(Output<T> output)
Description copied from interface:Debug
Writes a developer readable, debug-formatted string representation of this object tooutput
.
-
empty
public static HttpChunkTrailer empty()
-
create
public static HttpChunkTrailer create(FingerTrieSeq<HttpHeader> headers)
-
create
public static HttpChunkTrailer create(HttpHeader... headers)
-
parse
public static HttpChunkTrailer parse(String chunkTrailer)
-
-