Uses of Class
co.nstant.in.cbor.CborException
-
Packages that use CborException Package Description co.nstant.in.cbor co.nstant.in.cbor.decoder co.nstant.in.cbor.encoder co.nstant.in.cbor.model -
-
Uses of CborException in co.nstant.in.cbor
Methods in co.nstant.in.cbor that throw CborException Modifier and Type Method Description List<DataItem>CborDecoder. decode()Decode theInputStreamto a list ofDataItems.static List<DataItem>CborDecoder. decode(byte[] bytes)Convenience method to decode a byte array directly.voidCborDecoder. decode(DataItemListener dataItemListener)Streaming decoding of an input stream.DataItemCborDecoder. decodeNext()Decodes exactly one DataItem from the input stream.voidCborEncoder. encode(DataItem dataItem)Encode a singleDataItem.voidCborEncoder. encode(List<DataItem> dataItems)Encode a list ofDataItems, also known as a stream. -
Uses of CborException in co.nstant.in.cbor.decoder
Methods in co.nstant.in.cbor.decoder that throw CborException Modifier and Type Method Description abstract TAbstractDecoder. decode(int initialByte)ArrayArrayDecoder. decode(int initialByte)ByteStringByteStringDecoder. decode(int initialByte)DoublePrecisionFloatDoublePrecisionFloatDecoder. decode(int initialByte)HalfPrecisionFloatHalfPrecisionFloatDecoder. decode(int initialByte)MapMapDecoder. decode(int initialByte)NegativeIntegerNegativeIntegerDecoder. decode(int initialByte)SinglePrecisionFloatSinglePrecisionFloatDecoder. decode(int initialByte)SpecialSpecialDecoder. decode(int initialByte)TagTagDecoder. decode(int initialByte)UnicodeStringUnicodeStringDecoder. decode(int initialByte)UnsignedIntegerUnsignedIntegerDecoder. decode(int initialByte)protected longAbstractDecoder. getLength(int initialByte)protected BigIntegerAbstractDecoder. getLengthAsBigInteger(int initialByte)protected intAbstractDecoder. nextSymbol()protected byte[]AbstractDecoder. nextSymbols(int amount) -
Uses of CborException in co.nstant.in.cbor.encoder
Methods in co.nstant.in.cbor.encoder that throw CborException Modifier and Type Method Description abstract voidAbstractEncoder. encode(T dataItem)voidArrayEncoder. encode(Array array)voidByteStringEncoder. encode(ByteString byteString)voidDoublePrecisionFloatEncoder. encode(DoublePrecisionFloat dataItem)voidHalfPrecisionFloatEncoder. encode(HalfPrecisionFloat dataItem)voidMapEncoder. encode(Map map)voidNegativeIntegerEncoder. encode(NegativeInteger dataItem)voidSinglePrecisionFloatEncoder. encode(SinglePrecisionFloat dataItem)voidSpecialEncoder. encode(Special dataItem)voidTagEncoder. encode(Tag tag)voidUnicodeStringEncoder. encode(UnicodeString dataItem)voidUnsignedIntegerEncoder. encode(UnsignedInteger dataItem)protected voidAbstractEncoder. encodeTypeAndLength(MajorType majorType, long length)protected voidAbstractEncoder. encodeTypeAndLength(MajorType majorType, BigInteger length)protected voidAbstractEncoder. encodeTypeChunked(MajorType majorType)protected voidAbstractEncoder. write(byte... bytes)protected voidAbstractEncoder. write(int b) -
Uses of CborException in co.nstant.in.cbor.model
Methods in co.nstant.in.cbor.model that throw CborException Modifier and Type Method Description static SpecialTypeSpecialType. ofByte(int b)Constructors in co.nstant.in.cbor.model that throw CborException Constructor Description RationalNumber(Number numerator, Number denominator)
-