| Package | Description |
|---|---|
| org.sellcom.core.io.encoding |
| Modifier and Type | Method | 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,
java.lang.Boolean value) |
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putByte(short tag,
java.lang.Byte value) |
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putCharacter(short tag,
java.lang.Character value) |
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putDouble(short tag,
java.lang.Double value) |
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putFloat(short tag,
java.lang.Float value) |
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putInteger(short tag,
java.lang.Integer value) |
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putLong(short tag,
java.lang.Long value) |
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putShort(short tag,
java.lang.Short value) |
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putUtf16String(short tag,
java.lang.String value) |
Associates the given value with the given tag in the message.
|
TtlvBuilder |
TtlvBuilder.putUtf8String(short tag,
java.lang.String value) |
Associates the given value with the given tag in the message.
|