- java.lang.Object
-
- swim.http.HttpPart
-
- swim.http.HttpChunkHeader
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HttpChunkHeadercreate(long size)static HttpChunkHeadercreate(long size, FingerTrieSeq<ChunkExtension> extensions)static HttpChunkHeadercreate(long size, ChunkExtension... extensions)<T> Output<T>debug(Output<T> output)Writes a developer readable, debug-formatted string representation of this object tooutput.booleanequals(Object other)FingerTrieSeq<ChunkExtension>extensions()inthashCode()Writer<?,?>httpWriter(HttpWriter http)booleanisEmpty()static HttpChunkHeaderparse(String string)static HttpChunkHeadersentinel()longsize()StringtoString()Writer<?,?>writeHttp(Output<?> output, HttpWriter http)-
Methods inherited from class swim.http.HttpPart
httpWriter, toHttp, writeHttp
-
-
-
-
Method Detail
-
isEmpty
public boolean isEmpty()
-
size
public long size()
-
extensions
public FingerTrieSeq<ChunkExtension> extensions()
-
httpWriter
public Writer<?,?> httpWriter(HttpWriter http)
- Specified by:
httpWriterin classHttpPart
-
writeHttp
public Writer<?,?> writeHttp(Output<?> output, HttpWriter http)
-
debug
public <T> Output<T> debug(Output<T> output)
Description copied from interface:DebugWrites a developer readable, debug-formatted string representation of this object tooutput.
-
sentinel
public static HttpChunkHeader sentinel()
-
create
public static HttpChunkHeader create(long size, FingerTrieSeq<ChunkExtension> extensions)
-
create
public static HttpChunkHeader create(long size, ChunkExtension... extensions)
-
create
public static HttpChunkHeader create(long size)
-
parse
public static HttpChunkHeader parse(String string)
-
-