Package co.nstant.in.cbor.decoder

Examples of co.nstant.in.cbor.decoder.ByteStringDecoder


  public CborDecoder(InputStream inputStream) {
    Objects.requireNonNull(inputStream);
    this.inputStream = inputStream;
    unsignedIntegerDecoder = new UnsignedIntegerDecoder(this, inputStream);
    negativeIntegerDecoder = new NegativeIntegerDecoder(this, inputStream);
    byteStringDecoder = new ByteStringDecoder(this, inputStream);
    unicodeStringDecoder = new UnicodeStringDecoder(this, inputStream);
    arrayDecoder = new ArrayDecoder(this, inputStream);
    mapDecoder = new MapDecoder(this, inputStream);
    tagDecoder = new TagDecoder(this, inputStream);
    specialDecoder = new SpecialDecoder(this, inputStream);
View Full Code Here

TOP

Related Classes of co.nstant.in.cbor.decoder.ByteStringDecoder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.