| Package | Description |
|---|---|
| org.sellcom.core.io.encoding |
| Modifier and Type | Method and Description |
|---|---|
static TtlvBuilder |
Ttlv.create()
Returns an empty builder of TTLV-encoded messages.
|
TtlvBuilder |
TtlvBuilder.putBlob(short tag,
byte[] value)
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putBoolean(short tag,
Boolean value)
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putByte(short tag,
Byte value)
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putCharacter(short tag,
Character value)
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putDouble(short tag,
Double value)
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putFloat(short tag,
Float value)
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putInteger(short tag,
Integer value)
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putLong(short tag,
Long value)
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putShort(short tag,
Short value)
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putUtf16String(short tag,
String value)
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putUtf8String(short tag,
String value)
Associates the given value with the given tag in the message.
|