public class HPackHuffman extends Object
Modifier and Type | Class and Description |
---|---|
protected static class |
HPackHuffman.HuffmanCode |
Constructor and Description |
---|
HPackHuffman() |
Modifier and Type | Method and Description |
---|---|
static void |
decode(ByteBuffer data,
int length,
StringBuilder target)
Decodes a huffman encoded string into the target StringBuilder.
|
static boolean |
encode(ByteBuffer buffer,
String toEncode,
boolean forceLowercase)
Encodes the given string into the buffer.
|
public static void decode(ByteBuffer data, int length, StringBuilder target) throws HpackException
data
- The byte bufferlength
- The data lengthtarget
- The target for the decompressed dataHpackException
public static boolean encode(ByteBuffer buffer, String toEncode, boolean forceLowercase)
buffer
- The buffer to encode intotoEncode
- The string to encodeforceLowercase
- If the string should be encoded in lower caseCopyright © 2021 JBoss by Red Hat. All rights reserved.