Class ByteArrayCborDecoder

  • All Implemented Interfaces:
    java.lang.AutoCloseable

    public class ByteArrayCborDecoder
    extends CborDecoder
    • Constructor Detail

      • ByteArrayCborDecoder

        public ByteArrayCborDecoder​(byte[] bytes)
        Creates a new ByteArrayCborDecoder instance.
        Parameters:
        bytes - the encoded cbor message.
      • ByteArrayCborDecoder

        public ByteArrayCborDecoder​(byte[] bytes,
                                    int offset)
        Creates a new ByteArrayCborDecoder instance.
        Parameters:
        bytes - the encoded cbor message.
        offset - offset of bytes.
      • ByteArrayCborDecoder

        public ByteArrayCborDecoder​(byte[] bytes,
                                    int offset,
                                    int len)
        Creates a new ByteArrayCborDecoder instance.
        Parameters:
        bytes - the encoded cbor message.
        offset - offset of bytes for the cbor message.
        len - length of the bytes for the cbor message.