- writeArrayStart() - Method in class ej.cbor.CborEncoder
-
Writes the start of an indefinite-length array.
- writeArrayStart(int) - Method in class ej.cbor.CborEncoder
-
Writes the start of a definite-length array.
- writeBoolean(boolean) - Method in class ej.cbor.CborEncoder
-
Writes a boolean value in canonical CBOR format.
- writeBreak() - Method in class ej.cbor.CborEncoder
-
Writes a "break" stop-value in canonical CBOR format.
- writeByteString(byte[]) - Method in class ej.cbor.CborEncoder
-
Writes a byte string in canonical CBOR-format.
- writeByteStringStart() - Method in class ej.cbor.CborEncoder
-
Writes the start of an indefinite-length byte string.
- writeDouble(double) - Method in class ej.cbor.CborEncoder
-
Writes a double-precision float value in canonical CBOR format.
- writeFloat(float) - Method in class ej.cbor.CborEncoder
-
Writes a single-precision float value in canonical CBOR format.
- writeHalfPrecisionFloat(float) - Method in class ej.cbor.CborEncoder
-
Writes a half-precision float value in canonical CBOR format.
- writeInt(long) - Method in class ej.cbor.CborEncoder
-
Writes a signed or unsigned integer value in canonical CBOR format, that is, tries to encode it in a little bytes as possible.
- writeInt16(int) - Method in class ej.cbor.CborEncoder
-
Writes a signed or unsigned 16-bit integer value in CBOR format.
- writeInt32(long) - Method in class ej.cbor.CborEncoder
-
Writes a signed or unsigned 32-bit integer value in CBOR format.
- writeInt64(long) - Method in class ej.cbor.CborEncoder
-
Writes a signed or unsigned 64-bit integer value in CBOR format.
- writeInt8(int) - Method in class ej.cbor.CborEncoder
-
Writes a signed or unsigned 8-bit integer value in CBOR format.
- writeMapStart() - Method in class ej.cbor.CborEncoder
-
Writes the start of an indefinite-length map.
- writeMapStart(int) - Method in class ej.cbor.CborEncoder
-
Writes the start of a finite-length map.
- writeNull() - Method in class ej.cbor.CborEncoder
-
Writes a null
value in canonical CBOR format.
- writeSimpleType(int, int) - Method in class ej.cbor.CborEncoder
-
Encodes and writes the major type and value as a simple type.
- writeSimpleValue(byte) - Method in class ej.cbor.CborEncoder
-
Writes a simple value, i.e., an "atom" or "constant" value in canonical CBOR format.
- writeSmallInt(int) - Method in class ej.cbor.CborEncoder
-
Writes a signed or unsigned small (<= 23) integer value in CBOR format.
- writeString(int, byte[]) - Method in class ej.cbor.CborEncoder
-
Writes a byte string in canonical CBOR-format.
- writeTag(long) - Method in class ej.cbor.CborEncoder
-
Writes a semantic tag in canonical CBOR format.
- writeTextString(String) - Method in class ej.cbor.CborEncoder
-
Writes an UTF-8 string in canonical CBOR-format.
- writeTextStringStart() - Method in class ej.cbor.CborEncoder
-
Writes the start of an indefinite-length UTF-8 string.
- writeType(int, long) - Method in class ej.cbor.CborEncoder
-
Encodes and writes the major type indicator with a given payload (length).
- writeUInt(int, long) - Method in class ej.cbor.CborEncoder
-
Encodes and writes an unsigned integer value, that is, tries to encode it in a little bytes as possible.
- writeUInt16(int, int) - Method in class ej.cbor.CborEncoder
-
Encodes and writes an unsigned 16-bit integer value.
- writeUInt32(int, int) - Method in class ej.cbor.CborEncoder
-
Encodes and writes an unsigned 32-bit integer value.
- writeUInt64(int, long) - Method in class ej.cbor.CborEncoder
-
Encodes and writes an unsigned 64-bit integer value.
- writeUInt8(int, int) - Method in class ej.cbor.CborEncoder
-
Encodes and writes an unsigned 8-bit integer value.
- writeUndefined() - Method in class ej.cbor.CborEncoder
-
Writes an "undefined" value in canonical CBOR format.