- add(ValidationReport) - Method in class zserio.runtime.validation.ValidationReport
-
Adds other validation report to this report.
- addValueElement(Object) - Method in class zserio.runtime.creator.ZserioTreeCreator
-
Adds the value to the array.
- afterArray(Object, FieldInfo) - Method in class zserio.runtime.walker.AndWalkFilter
-
- afterArray(Object, FieldInfo) - Method in class zserio.runtime.walker.ArrayLengthWalkFilter
-
- afterArray(Object, FieldInfo) - Method in class zserio.runtime.walker.DefaultWalkFilter
-
- afterArray(Object, FieldInfo) - Method in class zserio.runtime.walker.DepthWalkFilter
-
- afterArray(Object, FieldInfo) - Method in class zserio.runtime.walker.RegexWalkFilter
-
- afterArray(Object, FieldInfo) - Method in interface zserio.runtime.walker.WalkFilter
-
Called after an array.
- afterCompound(Object, FieldInfo, int) - Method in class zserio.runtime.walker.AndWalkFilter
-
- afterCompound(Object, FieldInfo, int) - Method in class zserio.runtime.walker.ArrayLengthWalkFilter
-
- afterCompound(Object, FieldInfo, int) - Method in class zserio.runtime.walker.DefaultWalkFilter
-
- afterCompound(Object, FieldInfo, int) - Method in class zserio.runtime.walker.DepthWalkFilter
-
- afterCompound(Object, FieldInfo, int) - Method in class zserio.runtime.walker.RegexWalkFilter
-
- afterCompound(Object, FieldInfo, int) - Method in interface zserio.runtime.walker.WalkFilter
-
Called after a compound object.
- afterValue(Object, FieldInfo, int) - Method in class zserio.runtime.walker.AndWalkFilter
-
- afterValue(Object, FieldInfo, int) - Method in class zserio.runtime.walker.ArrayLengthWalkFilter
-
- afterValue(Object, FieldInfo, int) - Method in class zserio.runtime.walker.DefaultWalkFilter
-
- afterValue(Object, FieldInfo, int) - Method in class zserio.runtime.walker.DepthWalkFilter
-
- afterValue(Object, FieldInfo, int) - Method in class zserio.runtime.walker.RegexWalkFilter
-
- afterValue(Object, FieldInfo, int) - Method in interface zserio.runtime.walker.WalkFilter
-
Called after a simple value.
- alignTo(int, long) - Static method in class zserio.runtime.BitPositionUtil
-
Aligns the bit size to the given alignment value.
- alignTo(int) - Method in interface zserio.runtime.io.BitStreamReader
-
Aligns the bit position according to the aligning value.
- alignTo(int) - Method in interface zserio.runtime.io.BitStreamWriter
-
Aligns the bit position according to the aligning value.
- alignTo(int) - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- alignTo(int) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- AndWalkFilter - Class in zserio.runtime.walker
-
Walk filter which implements composition of particular filters.
- AndWalkFilter(List<WalkFilter>) - Constructor for class zserio.runtime.walker.AndWalkFilter
-
Constructor.
- Array - Class in zserio.runtime.array
-
Array wrapper which is used for mapping of all zserio arrays.
- Array(RawArray, ArrayTraits, ArrayType) - Constructor for class zserio.runtime.array.Array
-
Constructor.
- Array(RawArray, ArrayTraits, ArrayType, OffsetChecker) - Constructor for class zserio.runtime.array.Array
-
Constructor.
- Array(RawArray, ArrayTraits, ArrayType, OffsetChecker, OffsetInitializer) - Constructor for class zserio.runtime.array.Array
-
Constructor.
- ArrayElement - Interface in zserio.runtime.array
-
Common interface for all array elements.
- ArrayElement.BigIntegerArrayElement - Class in zserio.runtime.array
-
Array element for big integers.
- ArrayElement.BooleanArrayElement - Class in zserio.runtime.array
-
Array element for booleans.
- ArrayElement.ByteArrayElement - Class in zserio.runtime.array
-
Array element for bytes.
- ArrayElement.DoubleArrayElement - Class in zserio.runtime.array
-
Array element for doubles.
- ArrayElement.DummyElement - Class in zserio.runtime.array
-
Dummy array element.
- ArrayElement.FloatArrayElement - Class in zserio.runtime.array
-
Array element for floats.
- ArrayElement.IntArrayElement - Class in zserio.runtime.array
-
Array element for ints.
- ArrayElement.IntegralArrayElement - Interface in zserio.runtime.array
-
Interface for elements of integral arrays.
- ArrayElement.LongArrayElement - Class in zserio.runtime.array
-
Array element for longs.
- ArrayElement.ObjectArrayElement<E> - Class in zserio.runtime.array
-
Array element for objects.
- ArrayElement.ShortArrayElement - Class in zserio.runtime.array
-
Array element for shorts.
- ArrayLengthWalkFilter - Class in zserio.runtime.walker
-
Walk filter which allows to walk only to the given maximum array length.
- ArrayLengthWalkFilter(int) - Constructor for class zserio.runtime.walker.ArrayLengthWalkFilter
-
Constructor.
- ArrayTraits - Interface in zserio.runtime.array
-
Interface for array traits.
- ArrayTraits.BitBufferArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio extern bit buffer arrays which are mapped to Java BitBuffer[] array.
- ArrayTraits.BitFieldBigIntegerArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio uint64, bit:64 and dynamic bit field arrays which are mapped to
Java BigInteger[] array.
- ArrayTraits.BitFieldByteArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio bit:1...bit:7 arrays which are mapped to Java byte[] array.
- ArrayTraits.BitFieldIntArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio uint16 and bit:16...bit:31 arrays which are mapped to Java int[] array.
- ArrayTraits.BitFieldLongArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio uint32 and bit:32...bit:63 arrays which are mapped to Java long[] array.
- ArrayTraits.BitFieldShortArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio uint8 and bit:8...bit:15 arrays which are mapped to Java short[] array.
- ArrayTraits.BoolArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio bool arrays which are mapped to Java boolean[] array.
- ArrayTraits.BytesArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio bytes arrays which are mapped to Java byte[][] array.
- ArrayTraits.Float16ArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio float16 arrays which are mapped to Java float[] array.
- ArrayTraits.Float32ArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio float32 arrays which are mapped to Java float[] array.
- ArrayTraits.Float64ArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio float64 arrays which are mapped to Java double[] array.
- ArrayTraits.IntegralArrayTraits - Interface in zserio.runtime.array
-
Interface for integral array traits.
- ArrayTraits.IntegralArrayTraitsBase - Class in zserio.runtime.array
-
Implementation of common integral array traits functionality.
- ArrayTraits.ObjectArrayTraits<E extends SizeOf> - Class in zserio.runtime.array
-
Array traits for zserio object arrays (without writer part) which are mapped to Java zserio object array.
- ArrayTraits.PackableObjectArrayTraits<E extends PackableSizeOf> - Class in zserio.runtime.array
-
Array traits for zserio packable object arrays (without writer part) which are mapped to Java zserio
object array.
- ArrayTraits.SignedBitFieldByteArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio int8 and int:1...int:8 arrays which are mapped to Java byte[] array.
- ArrayTraits.SignedBitFieldIntArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio int32 and int:17...int:32 arrays which are mapped to Java int[] array.
- ArrayTraits.SignedBitFieldLongArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio int64 and int:33...int:64 arrays which are mapped to Java long[] array.
- ArrayTraits.SignedBitFieldShortArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio int16 and int:9...int:16 arrays which are mapped to Java short[] array.
- ArrayTraits.StringArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio string arrays which are mapped to Java String[] array.
- ArrayTraits.VarInt16ArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio varint16 arrays which are mapped to Java short[] array.
- ArrayTraits.VarInt32ArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio varint32 arrays which are mapped to Java int[] array.
- ArrayTraits.VarInt64ArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio varint64 arrays which are mapped to Java long[] array.
- ArrayTraits.VarIntArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio varint arrays which are mapped to Java long[] array.
- ArrayTraits.VarSizeArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio varsize arrays which are mapped to Java int[] array.
- ArrayTraits.VarUInt16ArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio varuint16 arrays which are mapped to Java short[] array.
- ArrayTraits.VarUInt32ArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio varuint32 arrays which are mapped to Java int[] array.
- ArrayTraits.VarUInt64ArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio varuint64 arrays which are mapped to Java long[] array.
- ArrayTraits.VarUIntArrayTraits - Class in zserio.runtime.array
-
Array traits for zserio varuint arrays which are mapped to Java BigInteger[] array.
- ArrayTraits.WriteObjectArrayTraits<E extends Writer & SizeOf> - Class in zserio.runtime.array
-
Array traits for zserio object arrays (with writer part) which are mapped to Java zserio object array.
- ArrayTraits.WritePackableObjectArrayTraits<E extends PackableWriter & PackableSizeOf> - Class in zserio.runtime.array
-
Array traits for zserio packable object arrays (with writer part) which are mapped to Java zserio
object array.
- ArrayType - Enum in zserio.runtime.array
-
Enumeration for all available zserio array types.
- beforeArray(Object, FieldInfo) - Method in class zserio.runtime.walker.AndWalkFilter
-
- beforeArray(Object, FieldInfo) - Method in class zserio.runtime.walker.ArrayLengthWalkFilter
-
- beforeArray(Object, FieldInfo) - Method in class zserio.runtime.walker.DefaultWalkFilter
-
- beforeArray(Object, FieldInfo) - Method in class zserio.runtime.walker.DepthWalkFilter
-
- beforeArray(Object, FieldInfo) - Method in class zserio.runtime.walker.RegexWalkFilter
-
- beforeArray(Object, FieldInfo) - Method in interface zserio.runtime.walker.WalkFilter
-
Called before an array.
- beforeCompound(Object, FieldInfo, int) - Method in class zserio.runtime.walker.AndWalkFilter
-
- beforeCompound(Object, FieldInfo, int) - Method in class zserio.runtime.walker.ArrayLengthWalkFilter
-
- beforeCompound(Object, FieldInfo, int) - Method in class zserio.runtime.walker.DefaultWalkFilter
-
- beforeCompound(Object, FieldInfo, int) - Method in class zserio.runtime.walker.DepthWalkFilter
-
- beforeCompound(Object, FieldInfo, int) - Method in class zserio.runtime.walker.RegexWalkFilter
-
- beforeCompound(Object, FieldInfo, int) - Method in interface zserio.runtime.walker.WalkFilter
-
Called before a compound object.
- beforeValue(Object, FieldInfo, int) - Method in class zserio.runtime.walker.AndWalkFilter
-
- beforeValue(Object, FieldInfo, int) - Method in class zserio.runtime.walker.ArrayLengthWalkFilter
-
- beforeValue(Object, FieldInfo, int) - Method in class zserio.runtime.walker.DefaultWalkFilter
-
- beforeValue(Object, FieldInfo, int) - Method in class zserio.runtime.walker.DepthWalkFilter
-
- beforeValue(Object, FieldInfo, int) - Method in class zserio.runtime.walker.RegexWalkFilter
-
- beforeValue(Object, FieldInfo, int) - Method in interface zserio.runtime.walker.WalkFilter
-
Called before a simple (or an unset compound - i.e.
- beginArray(String) - Method in class zserio.runtime.creator.ZserioTreeCreator
-
Creates an array field within the current compound.
- beginArray(Object, FieldInfo) - Method in class zserio.runtime.json.JsonWriter
-
- beginArray(Object, FieldInfo) - Method in class zserio.runtime.walker.DefaultWalkObserver
-
- beginArray(Object, FieldInfo) - Method in interface zserio.runtime.walker.WalkObserver
-
Called at the beginning of an array.
- beginCompound(String) - Method in class zserio.runtime.creator.ZserioTreeCreator
-
Creates a compound field within the current compound.
- beginCompound(Object, FieldInfo, int) - Method in class zserio.runtime.json.JsonWriter
-
- beginCompound(Object, FieldInfo, int) - Method in class zserio.runtime.walker.DefaultWalkObserver
-
- beginCompound(Object, FieldInfo, int) - Method in interface zserio.runtime.walker.WalkObserver
-
Called at the beginning of an compound field object.
- beginCompoundElement() - Method in class zserio.runtime.creator.ZserioTreeCreator
-
Creates compound array element within the current array.
- beginRoot() - Method in class zserio.runtime.creator.ZserioTreeCreator
-
Creates the top level compound element and move to state of building its children.
- beginRoot(Object) - Method in class zserio.runtime.json.JsonWriter
-
- beginRoot(Object) - Method in class zserio.runtime.walker.DefaultWalkObserver
-
- beginRoot(Object) - Method in interface zserio.runtime.walker.WalkObserver
-
Called for the root compound zserio object which is to be walked-through.
- BigIntegerArrayElement(BigInteger) - Constructor for class zserio.runtime.array.ArrayElement.BigIntegerArrayElement
-
Constructor.
- BigIntegerRawArray() - Constructor for class zserio.runtime.array.RawArray.BigIntegerRawArray
-
Empty constructor.
- BigIntegerRawArray(BigInteger[]) - Constructor for class zserio.runtime.array.RawArray.BigIntegerRawArray
-
Constructor from raw array.
- BitBuffer - Class in zserio.runtime.io
-
Class which holds any bit sequence.
- BitBuffer(byte[]) - Constructor for class zserio.runtime.io.BitBuffer
-
Constructor from byte buffer.
- BitBuffer(byte[], long) - Constructor for class zserio.runtime.io.BitBuffer
-
Constructor from byte buffer and bit size.
- BitBufferArrayTraits() - Constructor for class zserio.runtime.array.ArrayTraits.BitBufferArrayTraits
-
- BitBufferRawArray() - Constructor for class zserio.runtime.array.RawArray.BitBufferRawArray
-
Empty constructor.
- BitBufferRawArray(BitBuffer[]) - Constructor for class zserio.runtime.array.RawArray.BitBufferRawArray
-
Constructor from raw array.
- BitFieldBigIntegerArrayTraits(int) - Constructor for class zserio.runtime.array.ArrayTraits.BitFieldBigIntegerArrayTraits
-
Constructor from number of bits of zserio type.
- BitFieldByteArrayTraits(int) - Constructor for class zserio.runtime.array.ArrayTraits.BitFieldByteArrayTraits
-
Constructor from number of bits of zserio type.
- BitFieldIntArrayTraits(int) - Constructor for class zserio.runtime.array.ArrayTraits.BitFieldIntArrayTraits
-
Constructor from number of bits of zserio type.
- BitFieldLongArrayTraits(int) - Constructor for class zserio.runtime.array.ArrayTraits.BitFieldLongArrayTraits
-
Constructor from number of bits of zserio type.
- BitFieldShortArrayTraits(int) - Constructor for class zserio.runtime.array.ArrayTraits.BitFieldShortArrayTraits
-
Constructor from number of bits of zserio type.
- BitFieldUtil - Class in zserio.runtime
-
Provides bit field utilities for code generated by Zserio.
- BitFieldUtil() - Constructor for class zserio.runtime.BitFieldUtil
-
- BitmaskTypeInfo(String, Class<?>, TypeInfo, List<Supplier<Object>>, List<ItemInfo>) - Constructor for class zserio.runtime.typeinfo.TypeInfo.BitmaskTypeInfo
-
Constructor.
- BitPositionUtil - Class in zserio.runtime
-
The class provides help methods for manipulation with bit stream position.
- BitPositionUtil() - Constructor for class zserio.runtime.BitPositionUtil
-
- bitSizeOf(long) - Method in class zserio.runtime.array.Array
-
Gets the bit size of the array if it is stored in the bit stream.
- bitSizeOf(long, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.BitBufferArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.BitFieldBigIntegerArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.BitFieldByteArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.BitFieldIntArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.BitFieldLongArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.BitFieldShortArrayTraits
-
- bitSizeOf(long, ArrayElement) - Method in interface zserio.runtime.array.ArrayTraits
-
Gets the bit size of the array element if it is stored in the bit stream.
- bitSizeOf(long, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.BoolArrayTraits
-
- bitSizeOf(long, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.BytesArrayTraits
-
- bitSizeOf(long, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.Float16ArrayTraits
-
- bitSizeOf(long, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.Float32ArrayTraits
-
- bitSizeOf(long, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.Float64ArrayTraits
-
- bitSizeOf(ArrayElement) - Method in interface zserio.runtime.array.ArrayTraits.IntegralArrayTraits
-
Gets the bit size of the array element if it is stored in the bit stream.
- bitSizeOf(long, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.IntegralArrayTraitsBase
-
- bitSizeOf(long, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.ObjectArrayTraits
-
- bitSizeOf(long, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.PackableObjectArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.SignedBitFieldByteArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.SignedBitFieldIntArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.SignedBitFieldLongArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.SignedBitFieldShortArrayTraits
-
- bitSizeOf(long, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.StringArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarInt16ArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarInt32ArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarInt64ArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarIntArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarSizeArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarUInt16ArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarUInt32ArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarUInt64ArrayTraits
-
- bitSizeOf(ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarUIntArrayTraits
-
- bitSizeOf(ArrayTraits.IntegralArrayTraits, ArrayElement.IntegralArrayElement) - Method in class zserio.runtime.array.DeltaContext
-
Returns length of the packed element stored in the bit stream in bits.
- bitSizeOf(PackingContext, long, ArrayElement) - Method in interface zserio.runtime.array.PackedArrayTraits
-
Returns length of the array element stored in the bit stream in bits.
- bitSizeOf(PackingContext, long, ArrayElement) - Method in class zserio.runtime.array.PackedArrayTraits.IntegralPackedArrayTraits
-
- bitSizeOf(PackingContext, long, ArrayElement) - Method in class zserio.runtime.array.PackedArrayTraits.ObjectPackedArrayTraits
-
- bitSizeOf(PackingContext, long) - Method in interface zserio.runtime.PackableSizeOf
-
Gets the bit length of packed object stored in bit stream.
- bitSizeOf() - Method in interface zserio.runtime.SizeOf
-
Gets the bit length of object stored in bit stream.
- bitSizeOf(long) - Method in interface zserio.runtime.SizeOf
-
Gets the bit length of object stored in bit stream.
- BitSizeOfCalculator - Class in zserio.runtime
-
The class provides common methods to calculate bit size of an variable stored in the bit stream.
- BitSizeOfCalculator() - Constructor for class zserio.runtime.BitSizeOfCalculator
-
- bitSizeOfPacked(long) - Method in class zserio.runtime.array.Array
-
Returns length of the packed array stored in the bit stream in bits.
- bitsToBytes(long) - Static method in class zserio.runtime.BitPositionUtil
-
Converts a given bits value into a byte value.
- BitStreamReader - Interface in zserio.runtime.io
-
An interface for a bit stream reader implementation.
- BitStreamWriter - Interface in zserio.runtime.io
-
An interface for a bit stream writer implementation.
- BoolArrayTraits() - Constructor for class zserio.runtime.array.ArrayTraits.BoolArrayTraits
-
- BooleanArrayElement(boolean) - Constructor for class zserio.runtime.array.ArrayElement.BooleanArrayElement
-
Constructor.
- BooleanRawArray() - Constructor for class zserio.runtime.array.RawArray.BooleanRawArray
-
Empty constructor.
- BooleanRawArray(boolean[]) - Constructor for class zserio.runtime.array.RawArray.BooleanRawArray
-
Constructor from raw array.
- BuiltInOperators - Class in zserio.runtime
-
The implementation of all Zserio built-in operators called from code generated by Zserio.
- BuiltInOperators() - Constructor for class zserio.runtime.BuiltInOperators
-
- BuiltinTypeInfo(String, SchemaType, JavaType, Class<?>) - Constructor for class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Constructor.
- ByteArrayBitStreamReader - Class in zserio.runtime.io
-
A bit stream reader using byte array.
- ByteArrayBitStreamReader(byte[]) - Constructor for class zserio.runtime.io.ByteArrayBitStreamReader
-
Constructs object containing given bytes with a given byte order.
- ByteArrayBitStreamReader(BitBuffer) - Constructor for class zserio.runtime.io.ByteArrayBitStreamReader
-
Constructs object using given bit buffer.
- ByteArrayBitStreamReader(byte[], long) - Constructor for class zserio.runtime.io.ByteArrayBitStreamReader
-
Constructs object containing given bytes with a given byte order with exact bit size.
- ByteArrayBitStreamWriter - Class in zserio.runtime.io
-
A bit stream writer using byte array.
- ByteArrayBitStreamWriter() - Constructor for class zserio.runtime.io.ByteArrayBitStreamWriter
-
Constructs a new byte array bit stream writer with default capacity and the default endian byte order.
- ByteArrayBitStreamWriter(int) - Constructor for class zserio.runtime.io.ByteArrayBitStreamWriter
-
Constructs a new byte array bit stream writer with the given buffer capacity.
- ByteArrayElement(byte) - Constructor for class zserio.runtime.array.ArrayElement.ByteArrayElement
-
Constructor.
- ByteRawArray() - Constructor for class zserio.runtime.array.RawArray.ByteRawArray
-
Empty constructor.
- ByteRawArray(byte[]) - Constructor for class zserio.runtime.array.RawArray.ByteRawArray
-
Constructor from raw array.
- BytesArrayTraits() - Constructor for class zserio.runtime.array.ArrayTraits.BytesArrayTraits
-
- BytesRawArray() - Constructor for class zserio.runtime.array.RawArray.BytesRawArray
-
Empty constructor.
- BytesRawArray(byte[][]) - Constructor for class zserio.runtime.array.RawArray.BytesRawArray
-
Constructor from raw array.
- bytesToBits(long) - Static method in class zserio.runtime.BitPositionUtil
-
Converts a given bytes value into a bits value.
- calcHashCode(int, boolean) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a boolean value.
- calcHashCode(int, Boolean) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a Boolean value.
- calcHashCode(int, Byte) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for an Byte value.
- calcHashCode(int, Short) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for an Short value.
- calcHashCode(int, int) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for an int value.
- calcHashCode(int, Integer) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for an Integer value.
- calcHashCode(int, long) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a long value.
- calcHashCode(int, Long) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a Long value.
- calcHashCode(int, float) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a float value.
- calcHashCode(int, Float) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a Float value.
- calcHashCode(int, double) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a double value.
- calcHashCode(int, Double) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a Double value.
- calcHashCode(int, BigInteger) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a BigInteger value.
- calcHashCode(int, String) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a String value.
- calcHashCode(int, BitBuffer) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for BitBuffer value.
- calcHashCode(int, T) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a ZserioEnum value.
- calcHashCode(int, T) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for an SizeOf value.
- calcHashCode(int, Array) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for an Array value.
- calcHashCode(int, boolean[]) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a boolean raw array value.
- calcHashCode(int, byte[]) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a byte raw array value.
- calcHashCode(int, short[]) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a short raw array value.
- calcHashCode(int, int[]) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for an int raw array value.
- calcHashCode(int, long[]) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a long raw array value.
- calcHashCode(int, float[]) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a float raw array value.
- calcHashCode(int, double[]) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a double raw array value.
- calcHashCode(int, BigInteger[]) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a BigInteger raw array value.
- calcHashCode(int, byte[][]) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a bytes raw array value.
- calcHashCode(int, String[]) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a String raw array value.
- calcHashCode(int, BitBuffer[]) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a BitBuffer raw array value.
- calcHashCode(int, T[]) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a ZserioEnum raw array value.
- calcHashCode(int, T[]) - Static method in class zserio.runtime.HashCodeUtil
-
Calculates hash code for a generated object (including ZserioBitmask) raw array value.
- callMethod(String, ServiceData<? extends Writer>, Object) - Method in interface zserio.runtime.service.ServiceClientInterface
-
Calls method with the given name synchronously.
- callMethod(String, byte[], Object) - Method in interface zserio.runtime.service.ServiceInterface
-
Calls method with the given name synchronously.
- CaseInfo - Class in zserio.runtime.typeinfo
-
Type information for choice type case.
- CaseInfo(List<Supplier<Object>>, FieldInfo) - Constructor for class zserio.runtime.typeinfo.CaseInfo
-
Constructor.
- cast() - Method in class zserio.runtime.array.PackingContext
-
Casts packing context instance to the specified inherited class.
- checkOffset(int, long) - Method in interface zserio.runtime.array.OffsetChecker
-
Checks the bit stream offset for indexed offsets.
- ChoiceTypeInfo(String, Class<?>, String, List<TypeInfo>, List<FieldInfo>, List<ParameterInfo>, List<FunctionInfo>, String, List<CaseInfo>) - Constructor for class zserio.runtime.typeinfo.TypeInfo.ChoiceTypeInfo
-
Constructor.
- close() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- close() - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- close() - Method in class zserio.runtime.json.JsonReader
-
- close() - Method in class zserio.runtime.json.JsonWriter
-
- close() - Method in interface zserio.runtime.SqlDatabaseReader
-
Closes the database connection.
- ColumnDescription(String, String, boolean, boolean) - Constructor for class zserio.runtime.validation.ValidationSqliteUtil.ColumnDescription
-
Constructs table column description from all properties.
- ColumnInfo - Class in zserio.runtime.typeinfo
-
Type information for SQL table column.
- ColumnInfo(String, TypeInfo, List<Function<Object, Object>>, String, String, boolean) - Constructor for class zserio.runtime.typeinfo.ColumnInfo
-
Constructor.
- CompoundTypeInfoBase(String, SchemaType, JavaType, Class<?>, String, List<TypeInfo>, List<FieldInfo>, List<ParameterInfo>, List<FunctionInfo>) - Constructor for class zserio.runtime.typeinfo.TypeInfo.CompoundTypeInfoBase
-
Constructor.
- connection() - Method in interface zserio.runtime.SqlDatabaseReader
-
Gets the underlying database connection.
- ConstraintError - Exception in zserio.runtime
-
Provides type of exceptions thrown from generated code by Zserio whenever checking of constraint fails.
- ConstraintError() - Constructor for exception zserio.runtime.ConstraintError
-
Constructs an empty constraint error object.
- ConstraintError(String) - Constructor for exception zserio.runtime.ConstraintError
-
Constructs a new constraint error with the given message.
- ConstraintError(String, Throwable) - Constructor for exception zserio.runtime.ConstraintError
-
Constructs a new constraint error with the given message and throwable object.
- ConstraintError(Throwable) - Constructor for exception zserio.runtime.ConstraintError
-
Construct a new data constraint with the given throwable object.
- convertBitBufferSizeToInt(long) - Static method in class zserio.runtime.VarSizeUtil
-
Converts bit buffer size to signed integer value.
- convertDoubleToLong(double) - Static method in class zserio.runtime.FloatUtil
-
Converts 64-bit float (double) to 64-bit float (double) stored in long value.
- convertFloatToInt(float) - Static method in class zserio.runtime.FloatUtil
-
Converts 32-bit float to 32-bit float stored in int value.
- convertFloatToShort(float) - Static method in class zserio.runtime.FloatUtil
-
Converts 32-bit float to 16-bit float stored in short value.
- convertIntToFloat(int) - Static method in class zserio.runtime.FloatUtil
-
Converts 32-bit float stored in int value to 32-bit float.
- convertLongToDouble(long) - Static method in class zserio.runtime.FloatUtil
-
Converts 64-bit float (double) stored in long value to 64-bit float (double).
- convertShortToFloat(short) - Static method in class zserio.runtime.FloatUtil
-
Converts 16-bit float stored in short value to 32-bit float.
- create(BitStreamReader, int) - Method in interface zserio.runtime.array.ElementFactory
-
Creates array elements from the bit stream.
- create(PackingContext, BitStreamReader, int) - Method in interface zserio.runtime.array.PackableElementFactory
-
Creates packed array elements from the bit stream.
- createContext() - Method in interface zserio.runtime.array.PackedArrayTraits
-
Creates packing context.
- createContext() - Method in class zserio.runtime.array.PackedArrayTraits.IntegralPackedArrayTraits
-
- createContext() - Method in class zserio.runtime.array.PackedArrayTraits.ObjectPackedArrayTraits
-
- createPackingContext() - Method in interface zserio.runtime.array.PackableElementFactory
-
Creates packing context for the array element.
- createSchema() - Method in interface zserio.runtime.SqlDatabase
-
Creates a SQL schema.
- createSchema(Set<String>) - Method in interface zserio.runtime.SqlDatabase
-
Creates a SQL schema accepting without_rowid tables black list.
- get() - Method in class zserio.runtime.array.ArrayElement.BigIntegerArrayElement
-
Gets the element value.
- get() - Method in class zserio.runtime.array.ArrayElement.BooleanArrayElement
-
Gets the element value.
- get() - Method in class zserio.runtime.array.ArrayElement.ByteArrayElement
-
Gets the element value.
- get() - Method in class zserio.runtime.array.ArrayElement.DoubleArrayElement
-
Gets the element value.
- get() - Method in class zserio.runtime.array.ArrayElement.FloatArrayElement
-
Gets the element value.
- get() - Method in class zserio.runtime.array.ArrayElement.IntArrayElement
-
Gets the element value.
- get() - Method in class zserio.runtime.array.ArrayElement.LongArrayElement
-
Gets the element value.
- get() - Method in class zserio.runtime.array.ArrayElement.ObjectArrayElement
-
Gets the element value.
- get() - Method in class zserio.runtime.array.ArrayElement.ShortArrayElement
-
Gets the element value.
- get() - Method in interface zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo.TypeInfoGetter
-
Gets the type info.
- getAlignment() - Method in class zserio.runtime.typeinfo.FieldInfo
-
Gets field alignment expression.
- getArrayLength() - Method in class zserio.runtime.typeinfo.FieldInfo
-
Gets array field length expression.
- getBitBuffer() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of extern schema type.
- getBitFieldLowerBound(int, boolean) - Static method in class zserio.runtime.BitFieldUtil
-
Gets the lower bound of a bitfield type with given length.
- getBitFieldUpperBound(int, boolean) - Static method in class zserio.runtime.BitFieldUtil
-
Gets the upper bound of a bitfield type with given length.
- getBitmaskValues() - Method in class zserio.runtime.typeinfo.TypeInfo.BitmaskTypeInfo
-
- getBitmaskValues() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the type information for bitmask type values.
- getBitmaskValues() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getBitmaskValues() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getBitPosition() - Method in interface zserio.runtime.io.BitStreamReader
-
Gets the current bit position.
- getBitPosition() - Method in interface zserio.runtime.io.BitStreamWriter
-
Gets the current bit position.
- getBitSize() - Method in class zserio.runtime.io.BitBuffer
-
Gets the number of bits stored in the bit buffer.
- getBitSize() - Method in class zserio.runtime.typeinfo.TypeInfo.FixedSizeBuiltinTypeInfo
-
- getBitSize() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the bit size of the fixed size integral schema type.
- getBitSize() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getBitSize() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getBitSizeOfBitBuffer(BitBuffer) - Static method in class zserio.runtime.BitSizeOfCalculator
-
Gets the bit size of bit buffer which is stored in bit stream.
- getBitSizeOfBytes(byte[]) - Static method in class zserio.runtime.BitSizeOfCalculator
-
Gets the bit size of Zserio bytes value which is stored in bit stream.
- getBitSizeOfString(String) - Static method in class zserio.runtime.BitSizeOfCalculator
-
Gets the bit size of Zserio string value which is stored in bit stream.
- getBitSizeOfVarInt(long) - Static method in class zserio.runtime.BitSizeOfCalculator
-
Gets the bit size of varint value which is stored in bit stream.
- getBitSizeOfVarInt16(short) - Static method in class zserio.runtime.BitSizeOfCalculator
-
Gets the bit size of varint16 value which is stored in bit stream.
- getBitSizeOfVarInt32(int) - Static method in class zserio.runtime.BitSizeOfCalculator
-
Gets the bit size of varint32 value which is stored in bit stream.
- getBitSizeOfVarInt64(long) - Static method in class zserio.runtime.BitSizeOfCalculator
-
Gets the bit size of varint64 value which is stored in bit stream.
- getBitSizeOfVarSize(int) - Static method in class zserio.runtime.BitSizeOfCalculator
-
Gets the bit size of varsize value which is stored in bit stream.
- getBitSizeOfVarUInt(BigInteger) - Static method in class zserio.runtime.BitSizeOfCalculator
-
Gets the bit size of varuint value which is stored in bit stream.
- getBitSizeOfVarUInt16(short) - Static method in class zserio.runtime.BitSizeOfCalculator
-
Gets the bit size of varuint16 value which is stored in bit stream.
- getBitSizeOfVarUInt32(int) - Static method in class zserio.runtime.BitSizeOfCalculator
-
Gets the bit size of varuint32 value which is stored in bit stream.
- getBitSizeOfVarUInt64(long) - Static method in class zserio.runtime.BitSizeOfCalculator
-
Gets the bit size of varuint64 value which is stored in bit stream.
- getBool() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of bool schema type.
- getBool() - Static method in class zserio.runtime.typeinfo.TypeInfo.FixedSizeBuiltinTypeInfo
-
Gets the type information of bool schema type.
- getBuffer() - Method in class zserio.runtime.io.BitBuffer
-
Gets the underlying byte buffer.
- getBuffer() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
Gets the underlying buffer.
- getBufferBitSize() - Method in interface zserio.runtime.io.BitStreamReader
-
Gets size of the underlying buffer in bits.
- getBufferBitSize() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- getByteArray() - Method in class zserio.runtime.service.ObjectServiceData
-
Gets the data which represent the request.
- getByteArray() - Method in class zserio.runtime.service.RawServiceData
-
- getByteArray() - Method in interface zserio.runtime.service.ServiceData
-
Gets the data which represent the request.
- getBytePosition() - Method in interface zserio.runtime.io.BitStreamReader
-
Gets the current byte position.
- getBytePosition() - Method in interface zserio.runtime.io.BitStreamWriter
-
Gets the current byte position.
- getBytes() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of bytes schema type.
- getByteSize() - Method in class zserio.runtime.io.BitBuffer
-
Gets the number of bytes stored in the bit buffer.
- getCaseExpressions() - Method in class zserio.runtime.typeinfo.CaseInfo
-
Gets sequence of case expressions.
- getCases() - Method in class zserio.runtime.typeinfo.TypeInfo.ChoiceTypeInfo
-
- getCases() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the type information for choice type cases.
- getCases() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getCases() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getColumns() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the type information for SQL table columns.
- getColumns() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getColumns() - Method in class zserio.runtime.typeinfo.TypeInfo.SqlTableTypeInfo
-
- getColumns() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getConstraint() - Method in class zserio.runtime.typeinfo.FieldInfo
-
Gets field constraint expression.
- getDuration() - Method in class zserio.runtime.validation.ValidationTimer
-
Gets timer duration.
- getDynamicSignedBitField(byte) - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of dynamic signed bit field schema type.
- getDynamicUnsignedBitField(byte) - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of dynamic unsigned bit field schema type.
- getElement(int) - Method in class zserio.runtime.array.RawArray.BigIntegerRawArray
-
- getElement(int) - Method in class zserio.runtime.array.RawArray.BitBufferRawArray
-
- getElement(int) - Method in class zserio.runtime.array.RawArray.BooleanRawArray
-
- getElement(int) - Method in class zserio.runtime.array.RawArray.ByteRawArray
-
- getElement(int) - Method in class zserio.runtime.array.RawArray.BytesRawArray
-
- getElement(int) - Method in class zserio.runtime.array.RawArray.DoubleRawArray
-
- getElement(int) - Method in class zserio.runtime.array.RawArray.EnumRawArray
-
- getElement(int) - Method in class zserio.runtime.array.RawArray.FloatRawArray
-
- getElement(int) - Method in interface zserio.runtime.array.RawArray
-
Gets the raw array element.
- getElement(int) - Method in class zserio.runtime.array.RawArray.IntRawArray
-
- getElement(int) - Method in class zserio.runtime.array.RawArray.LongRawArray
-
- getElement(int) - Method in class zserio.runtime.array.RawArray.ObjectRawArray
-
- getElement(int) - Method in class zserio.runtime.array.RawArray.ShortRawArray
-
- getElement(int) - Method in class zserio.runtime.array.RawArray.StringRawArray
-
- getElementFactory() - Method in class zserio.runtime.array.ArrayTraits.PackableObjectArrayTraits
-
Gets the element factory.
- getElementType() - Method in class zserio.runtime.creator.ZserioTreeCreator
-
Gets type info of the expected array element.
- getEnumItems() - Method in class zserio.runtime.typeinfo.TypeInfo.EnumTypeInfo
-
- getEnumItems() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the type information for enumeration type items.
- getEnumItems() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getEnumItems() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getErrors() - Method in class zserio.runtime.validation.ValidationReport
-
Gets the list of all validation errors.
- getField() - Method in class zserio.runtime.typeinfo.CaseInfo
-
Gets type information for the field defined for current cases.
- getFieldName() - Method in class zserio.runtime.validation.ValidationError
-
Gets the table column name where this validation error occured.
- getFields() - Method in class zserio.runtime.typeinfo.TypeInfo.CompoundTypeInfoBase
-
- getFields() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the type information for compound type fields.
- getFields() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getFields() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getFieldType(String) - Method in class zserio.runtime.creator.ZserioTreeCreator
-
Gets type info of the expected field.
- getFixedSignedBitField(byte) - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of fixed signed bit field schema type.
- getFixedSignedBitField(byte) - Static method in class zserio.runtime.typeinfo.TypeInfo.FixedSizeBuiltinTypeInfo
-
Gets the type information of fixed signed bit field schema type.
- getFixedUnsignedBitField(byte) - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of fixed unsigned bit field schema type.
- getFixedUnsignedBitField(byte) - Static method in class zserio.runtime.typeinfo.TypeInfo.FixedSizeBuiltinTypeInfo
-
Gets the type information of fixed unsigned bit field schema type.
- getFloat16() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of float16 schema type.
- getFloat16() - Static method in class zserio.runtime.typeinfo.TypeInfo.FixedSizeBuiltinTypeInfo
-
Gets the type information of float16 schema type.
- getFloat32() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of float32 schema type.
- getFloat32() - Static method in class zserio.runtime.typeinfo.TypeInfo.FixedSizeBuiltinTypeInfo
-
Gets the type information of float32 schema type.
- getFloat64() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of float64 schema type.
- getFloat64() - Static method in class zserio.runtime.typeinfo.TypeInfo.FixedSizeBuiltinTypeInfo
-
Gets the type information of float64 schema type.
- getFunctionResult() - Method in class zserio.runtime.typeinfo.FunctionInfo
-
Gets result expression.
- getFunctions() - Method in class zserio.runtime.typeinfo.TypeInfo.CompoundTypeInfoBase
-
- getFunctions() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the type information for compound type functions.
- getFunctions() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getFunctions() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getGenericValue() - Method in interface zserio.runtime.ZserioBitmask
-
Gets generic value which represent bitmask value.
- getGenericValue() - Method in interface zserio.runtime.ZserioEnum
-
Gets generic value which represent enumeration value.
- getGetterName() - Method in class zserio.runtime.typeinfo.FieldInfo
-
Gets field getter name.
- getInitializer() - Method in class zserio.runtime.typeinfo.FieldInfo
-
Gets field initializer expression.
- getInt16() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of int16 schema type.
- getInt16() - Static method in class zserio.runtime.typeinfo.TypeInfo.FixedSizeBuiltinTypeInfo
-
Gets the type information of int16 schema type.
- getInt32() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of int32 schema type.
- getInt32() - Static method in class zserio.runtime.typeinfo.TypeInfo.FixedSizeBuiltinTypeInfo
-
Gets the type information of int32 schema type.
- getInt64() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of int64 schema type.
- getInt64() - Static method in class zserio.runtime.typeinfo.TypeInfo.FixedSizeBuiltinTypeInfo
-
Gets the type information of int64 schema type.
- getInt8() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of int8 schema type.
- getInt8() - Static method in class zserio.runtime.typeinfo.TypeInfo.FixedSizeBuiltinTypeInfo
-
Gets the type information of int8 schema type.
- getIsSetIndicatorName() - Method in class zserio.runtime.typeinfo.FieldInfo
-
Gets field "is set" indicator name.
- getIsUsedIndicatorName() - Method in class zserio.runtime.typeinfo.FieldInfo
-
Gets field "is used" indicator name.
- getJavaClass() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the Java Class object.
- getJavaClass() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getJavaClass() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getJavaType() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the Java type.
- getJavaType() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getJavaType() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getMessage() - Method in class zserio.runtime.validation.ValidationError
-
Gets the validation error message.
- getMessages() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the type information for pubsub messages.
- getMessages() - Method in class zserio.runtime.typeinfo.TypeInfo.PubsubTypeInfo
-
- getMessages() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getMessages() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getMethods() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the type information for service methods.
- getMethods() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getMethods() - Method in class zserio.runtime.typeinfo.TypeInfo.ServiceTypeInfo
-
- getMethods() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getName() - Method in class zserio.runtime.validation.ValidationSqliteUtil.ColumnDescription
-
Gets the column name.
- getNumberOfValidatedRows() - Method in class zserio.runtime.validation.ValidationReport
-
Gets the number of validated table rows.
- getNumberOfValidatedTables() - Method in class zserio.runtime.validation.ValidationReport
-
Gets the number of validated tables.
- getOffset() - Method in class zserio.runtime.typeinfo.FieldInfo
-
Gets field offset expression.
- getOptionalCondition() - Method in class zserio.runtime.typeinfo.FieldInfo
-
Gets field optional condition expression.
- getPackedArrayTraits() - Method in class zserio.runtime.array.ArrayTraits.BitBufferArrayTraits
-
- getPackedArrayTraits() - Method in class zserio.runtime.array.ArrayTraits.BoolArrayTraits
-
- getPackedArrayTraits() - Method in class zserio.runtime.array.ArrayTraits.BytesArrayTraits
-
- getPackedArrayTraits() - Method in class zserio.runtime.array.ArrayTraits.Float16ArrayTraits
-
- getPackedArrayTraits() - Method in class zserio.runtime.array.ArrayTraits.Float32ArrayTraits
-
- getPackedArrayTraits() - Method in class zserio.runtime.array.ArrayTraits.Float64ArrayTraits
-
- getPackedArrayTraits() - Method in interface zserio.runtime.array.ArrayTraits
-
Gets packed array traits.
- getPackedArrayTraits() - Method in class zserio.runtime.array.ArrayTraits.IntegralArrayTraitsBase
-
- getPackedArrayTraits() - Method in class zserio.runtime.array.ArrayTraits.ObjectArrayTraits
-
- getPackedArrayTraits() - Method in class zserio.runtime.array.ArrayTraits.PackableObjectArrayTraits
-
- getPackedArrayTraits() - Method in class zserio.runtime.array.ArrayTraits.StringArrayTraits
-
- getPackedArrayTraits() - Method in class zserio.runtime.array.ArrayTraits.WritePackableObjectArrayTraits
-
- getParameters() - Method in class zserio.runtime.typeinfo.TypeInfo.CompoundTypeInfoBase
-
- getParameters() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the type information for compound type parameters.
- getParameters() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getParameters() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getRawArray() - Method in class zserio.runtime.array.Array
-
Gets the underlying raw array.
- getRawArray() - Method in class zserio.runtime.array.RawArray.BigIntegerRawArray
-
- getRawArray() - Method in class zserio.runtime.array.RawArray.BitBufferRawArray
-
- getRawArray() - Method in class zserio.runtime.array.RawArray.BooleanRawArray
-
- getRawArray() - Method in class zserio.runtime.array.RawArray.ByteRawArray
-
- getRawArray() - Method in class zserio.runtime.array.RawArray.BytesRawArray
-
- getRawArray() - Method in class zserio.runtime.array.RawArray.DoubleRawArray
-
- getRawArray() - Method in class zserio.runtime.array.RawArray.EnumRawArray
-
- getRawArray() - Method in class zserio.runtime.array.RawArray.FloatRawArray
-
- getRawArray() - Method in interface zserio.runtime.array.RawArray
-
Gets the underlying raw array.
- getRawArray() - Method in class zserio.runtime.array.RawArray.IntRawArray
-
- getRawArray() - Method in class zserio.runtime.array.RawArray.LongRawArray
-
- getRawArray() - Method in class zserio.runtime.array.RawArray.ObjectRawArray
-
- getRawArray() - Method in class zserio.runtime.array.RawArray.ShortRawArray
-
- getRawArray() - Method in class zserio.runtime.array.RawArray.StringRawArray
-
- getRequestTypeInfo() - Method in class zserio.runtime.typeinfo.MethodInfo
-
Gets type information for the method request type.
- getResponseTypeInfo() - Method in class zserio.runtime.typeinfo.MethodInfo
-
Gets type information for the method response type.
- getRowKeyValues() - Method in class zserio.runtime.validation.ValidationError
-
Gets the primary key values which identify table row where this validation error occured.
- getSchemaName() - Method in class zserio.runtime.typeinfo.ColumnInfo
-
Name of the column as is defined in zserio schema.
- getSchemaName() - Method in class zserio.runtime.typeinfo.FieldInfo
-
Gets field schema name.
- getSchemaName() - Method in class zserio.runtime.typeinfo.FunctionInfo
-
Gets function schema name.
- getSchemaName() - Method in class zserio.runtime.typeinfo.ItemInfo
-
Gets enumeration item or bitmask value schema name.
- getSchemaName() - Method in class zserio.runtime.typeinfo.MessageInfo
-
Gets name of the message as is defined in zserio schema.
- getSchemaName() - Method in class zserio.runtime.typeinfo.MethodInfo
-
Gets name of the method as is defined in zserio schema.
- getSchemaName() - Method in class zserio.runtime.typeinfo.ParameterInfo
-
Gets parameter schema name.
- getSchemaName() - Method in class zserio.runtime.typeinfo.TableInfo
-
Gets name of the table as is defined in zserio schema.
- getSchemaName() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the schema name.
- getSchemaName() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getSchemaName() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getSchemaType() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the schema type.
- getSchemaType() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getSchemaType() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getSelector() - Method in class zserio.runtime.typeinfo.TypeInfo.ChoiceTypeInfo
-
- getSelector() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the selector for choice type.
- getSelector() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getSelector() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getSetterName() - Method in class zserio.runtime.typeinfo.FieldInfo
-
Gets field setter name.
- getSqlConstraint() - Method in class zserio.runtime.typeinfo.ColumnInfo
-
Gets column SQL constraint expression.
- getSqlConstraint() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the SQL table constraint.
- getSqlConstraint() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getSqlConstraint() - Method in class zserio.runtime.typeinfo.TypeInfo.SqlTableTypeInfo
-
- getSqlConstraint() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getSqlTypeName() - Method in class zserio.runtime.typeinfo.ColumnInfo
-
Gets SQL type name of the column.
- getStackTrace() - Method in class zserio.runtime.validation.ValidationError
-
Gets the stack trace.
- getString() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of string schema type.
- getTableName() - Method in class zserio.runtime.validation.ValidationError
-
Gets the table name where this validation error occured.
- getTables() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the type information for SQL database tables.
- getTables() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getTables() - Method in class zserio.runtime.typeinfo.TypeInfo.SqlDatabaseTypeInfo
-
- getTables() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getTableSchema(Connection, String, String) - Static method in class zserio.runtime.validation.ValidationSqliteUtil
-
Returns a map of column names to column description for given SQLite table.
- getTemplateArguments() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the type information for template arguments.
- getTemplateArguments() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getTemplateArguments() - Method in class zserio.runtime.typeinfo.TypeInfo.TemplatableTypeInfoBase
-
- getTemplateArguments() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getTemplateName() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the full schema template name.
- getTemplateName() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getTemplateName() - Method in class zserio.runtime.typeinfo.TypeInfo.TemplatableTypeInfoBase
-
- getTemplateName() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getTopic() - Method in class zserio.runtime.typeinfo.MessageInfo
-
Gets pubsub topic definition for the message.
- getTotalParameterProviderTime() - Method in class zserio.runtime.validation.ValidationReport
-
Gets total time in milliseconds spent in parameter provider callback implemented by called application.
- getTotalValidationTime() - Method in class zserio.runtime.validation.ValidationReport
-
Gets total time in milliseconds spent in validation method generated by Zserio.
- getType() - Method in class zserio.runtime.validation.ValidationError
-
Gets the validation error type.
- getType() - Method in class zserio.runtime.validation.ValidationSqliteUtil.ColumnDescription
-
Gets the column SQLite data type.
- getTypeArguments() - Method in class zserio.runtime.typeinfo.ColumnInfo
-
Gets sequence of column type arguments.
- getTypeArguments() - Method in class zserio.runtime.typeinfo.FieldInfo
-
Gets sequence of field type arguments.
- getTypeInfo() - Method in class zserio.runtime.typeinfo.ColumnInfo
-
Gets type information for the column type.
- getTypeInfo() - Method in class zserio.runtime.typeinfo.FieldInfo
-
Gets type information for the field.
- getTypeInfo() - Method in class zserio.runtime.typeinfo.FunctionInfo
-
Gets type information for the function.
- getTypeInfo() - Method in class zserio.runtime.typeinfo.MessageInfo
-
Gets type information for a message type.
- getTypeInfo() - Method in class zserio.runtime.typeinfo.ParameterInfo
-
Gets type information for the parameter.
- getTypeInfo() - Method in class zserio.runtime.typeinfo.TableInfo
-
Gets type information for the table.
- getUInt16() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of uint16 schema type.
- getUInt16() - Static method in class zserio.runtime.typeinfo.TypeInfo.FixedSizeBuiltinTypeInfo
-
Gets the type information of uint16 schema type.
- getUInt32() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of uint32 schema type.
- getUInt32() - Static method in class zserio.runtime.typeinfo.TypeInfo.FixedSizeBuiltinTypeInfo
-
Gets the type information of uint32 schema type.
- getUInt64() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of uint64 schema type.
- getUInt64() - Static method in class zserio.runtime.typeinfo.TypeInfo.FixedSizeBuiltinTypeInfo
-
Gets the type information of uint64 schema type.
- getUInt8() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of uint8 schema type.
- getUInt8() - Static method in class zserio.runtime.typeinfo.TypeInfo.FixedSizeBuiltinTypeInfo
-
Gets the type information of uint8 schema type.
- getUnderlyingType() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the reference to type information of underlying zserio type.
- getUnderlyingType() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getUnderlyingType() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getUnderlyingType() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoWithUnderlyingTypeBase
-
- getUnderlyingTypeArguments() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the reference to type information of underlying zserio type arguments.
- getUnderlyingTypeArguments() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getUnderlyingTypeArguments() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getUnderlyingTypeArguments() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoWithUnderlyingTypeBase
-
- getValue() - Method in class zserio.runtime.typeinfo.ItemInfo
-
Gets enumeration item value or bitmask value.
- getVarInt() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of varint schema type.
- getVarInt16() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of varint16 schema type.
- getVarInt32() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of varint32 schema type.
- getVarInt64() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of varint64 schema type.
- getVarSize() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of varsize schema type.
- getVarUInt() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of varuint schema type.
- getVarUInt16() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of varuint16 schema type.
- getVarUInt32() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of varuint32 schema type.
- getVarUInt64() - Static method in class zserio.runtime.typeinfo.TypeInfo.BuiltinTypeInfo
-
Gets the type information of varuint64 schema type.
- getVirtualTableUsing() - Method in interface zserio.runtime.typeinfo.TypeInfo
-
Gets the SQL table using specification.
- getVirtualTableUsing() - Method in class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
- getVirtualTableUsing() - Method in class zserio.runtime.typeinfo.TypeInfo.SqlTableTypeInfo
-
- getVirtualTableUsing() - Method in class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
- getZserioObject() - Method in class zserio.runtime.service.ObjectServiceData
-
Gets the Zserio object which represents the request.
- getZserioObject() - Method in class zserio.runtime.service.RawServiceData
-
- getZserioObject() - Method in interface zserio.runtime.service.ServiceData
-
Gets the Zserio object which represents the request, if available.
- RawArray - Interface in zserio.runtime.array
-
Interface for classes which holds raw array.
- RawArray.BigIntegerRawArray - Class in zserio.runtime.array
-
Raw array for Java native array of BigIntegers.
- RawArray.BitBufferRawArray - Class in zserio.runtime.array
-
Raw array for Java native array of BitBuffer.
- RawArray.BooleanRawArray - Class in zserio.runtime.array
-
Raw array for Java native array of booleans.
- RawArray.ByteRawArray - Class in zserio.runtime.array
-
Raw array for Java native array of bytes.
- RawArray.BytesRawArray - Class in zserio.runtime.array
-
Raw array for Java native array of bytes.
- RawArray.DoubleRawArray - Class in zserio.runtime.array
-
Raw array for Java native array of doubles.
- RawArray.EnumRawArray<E extends ZserioEnum & SizeOf> - Class in zserio.runtime.array
-
Raw array for Java native array of enums.
- RawArray.FloatRawArray - Class in zserio.runtime.array
-
Raw array for Java native array of floats.
- RawArray.IntRawArray - Class in zserio.runtime.array
-
Raw array for Java native array of ints.
- RawArray.LongRawArray - Class in zserio.runtime.array
-
Raw array for Java native array of longs.
- RawArray.ObjectRawArray<E extends SizeOf> - Class in zserio.runtime.array
-
Raw array for Java native array of objects.
- RawArray.ShortRawArray - Class in zserio.runtime.array
-
Raw array for Java native array of shorts.
- RawArray.StringRawArray - Class in zserio.runtime.array
-
Raw array for Java native array of Strings.
- RawServiceData - Class in zserio.runtime.service
-
ServiceData implementation based on raw data.
- RawServiceData(byte[]) - Constructor for class zserio.runtime.service.RawServiceData
-
Constructor from raw data.
- read(BitStreamReader) - Method in class zserio.runtime.array.Array
-
Reads the array from the bit stream.
- read(BitStreamReader, int) - Method in class zserio.runtime.array.Array
-
Reads the array from the bit stream.
- read(BitStreamReader, int) - Method in class zserio.runtime.array.ArrayTraits.BitBufferArrayTraits
-
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.BitFieldBigIntegerArrayTraits
-
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.BitFieldByteArrayTraits
-
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.BitFieldIntArrayTraits
-
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.BitFieldLongArrayTraits
-
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.BitFieldShortArrayTraits
-
- read(BitStreamReader, int) - Method in class zserio.runtime.array.ArrayTraits.BoolArrayTraits
-
- read(BitStreamReader, int) - Method in class zserio.runtime.array.ArrayTraits.BytesArrayTraits
-
- read(BitStreamReader, int) - Method in class zserio.runtime.array.ArrayTraits.Float16ArrayTraits
-
- read(BitStreamReader, int) - Method in class zserio.runtime.array.ArrayTraits.Float32ArrayTraits
-
- read(BitStreamReader, int) - Method in class zserio.runtime.array.ArrayTraits.Float64ArrayTraits
-
- read(BitStreamReader) - Method in interface zserio.runtime.array.ArrayTraits.IntegralArrayTraits
-
Reads the array element from the bit stream.
- read(BitStreamReader, int) - Method in class zserio.runtime.array.ArrayTraits.IntegralArrayTraitsBase
-
- read(BitStreamReader, int) - Method in class zserio.runtime.array.ArrayTraits.ObjectArrayTraits
-
- read(BitStreamReader, int) - Method in class zserio.runtime.array.ArrayTraits.PackableObjectArrayTraits
-
- read(BitStreamReader, int) - Method in interface zserio.runtime.array.ArrayTraits
-
Reads the array element from the bit stream.
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.SignedBitFieldByteArrayTraits
-
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.SignedBitFieldIntArrayTraits
-
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.SignedBitFieldLongArrayTraits
-
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.SignedBitFieldShortArrayTraits
-
- read(BitStreamReader, int) - Method in class zserio.runtime.array.ArrayTraits.StringArrayTraits
-
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.VarInt16ArrayTraits
-
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.VarInt32ArrayTraits
-
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.VarInt64ArrayTraits
-
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.VarIntArrayTraits
-
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.VarSizeArrayTraits
-
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.VarUInt16ArrayTraits
-
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.VarUInt32ArrayTraits
-
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.VarUInt64ArrayTraits
-
- read(BitStreamReader) - Method in class zserio.runtime.array.ArrayTraits.VarUIntArrayTraits
-
- read(ArrayTraits.IntegralArrayTraits, BitStreamReader) - Method in class zserio.runtime.array.DeltaContext
-
Reads a packed element from the bit stream.
- read(PackingContext, BitStreamReader, int) - Method in class zserio.runtime.array.PackedArrayTraits.IntegralPackedArrayTraits
-
- read(PackingContext, BitStreamReader, int) - Method in class zserio.runtime.array.PackedArrayTraits.ObjectPackedArrayTraits
-
- read(PackingContext, BitStreamReader, int) - Method in interface zserio.runtime.array.PackedArrayTraits
-
Reads an element from the bit stream.
- read(TypeInfo, Object...) - Method in class zserio.runtime.json.JsonReader
-
Reads a zserio object tree defined by the given type info from the text steam.
- readBigInteger(int) - Method in interface zserio.runtime.io.BitStreamReader
-
Reads the next unsigned Big Integer value with containing numBits bits.
- readBigInteger(int) - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readBitBuffer() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads a bit buffer from the bit stream.
- readBitBuffer() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readBits(int) - Method in interface zserio.runtime.io.BitStreamReader
-
Reads the next numBits of the bit stream as long value.
- readBits(int) - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readBool() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads a Boolean value from the bit stream.
- readBool() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readByte() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads the next signed byte (8 bits).
- readByte() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readBytes() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads a Zserio bytes from the bit stream.
- readBytes() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readFloat16() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads the a float16 value from the bit stream.
- readFloat16() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readFloat16() - Method in class zserio.runtime.validation.ValidationBitStreamReader
-
- readFloat32() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads the a float32 value from the bit stream.
- readFloat32() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readFloat64() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads the a float64 value from the bit stream.
- readFloat64() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readInt() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads the next signed integer (32 bits).
- readInt() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readLong() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads the next signed long (64 bits).
- readLong() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readPacked(BitStreamReader) - Method in class zserio.runtime.array.Array
-
Reads packed array from the bit stream.
- readPacked(BitStreamReader, int) - Method in class zserio.runtime.array.Array
-
Reads packed array from the bit stream.
- readShort() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads the next signed short (16 bits).
- readShort() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readSignedBigInteger(int) - Method in interface zserio.runtime.io.BitStreamReader
-
Reads the next signed big Integer value with containing numBits bits.
- readSignedBigInteger(int) - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readSignedBits(int) - Method in interface zserio.runtime.io.BitStreamReader
-
Reads the next numBits as signed bit value.
- readSignedBits(int) - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readString() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads a Zserio string from the bit stream assuming it is encoded in UTF-8.
- readString() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readUnsignedByte() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads the next unsigned byte (8 bits) as short value.
- readUnsignedByte() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readUnsignedInt() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads the next unsigned integer (32 bits) as long value.
- readUnsignedInt() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readUnsignedShort() - Method in interface zserio.runtime.io.BitStreamReader
-
Read the next unsigned short (16 bits) as int value.
- readUnsignedShort() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readVarInt() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads a signed variable integer from the bit stream.
- readVarInt() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readVarInt16() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads a variable 16 bit integer from the bit stream.
- readVarInt16() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readVarInt32() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads a variable 32 bit integer from the bit stream.
- readVarInt32() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readVarInt64() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads a variable 64 bit integer from the bit stream.
- readVarInt64() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readVarSize() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads a variable size integer from the bit stream.
- readVarSize() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readVarUInt() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads an unsigned variable integer from the bit stream.
- readVarUInt() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readVarUInt16() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads an unsigned variable 16 bit integer from the bit stream.
- readVarUInt16() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readVarUInt32() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads an unsigned variable 32 bit integer from the bit stream.
- readVarUInt32() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- readVarUInt64() - Method in interface zserio.runtime.io.BitStreamReader
-
Reads an unsigned variable 64 bit integer from the bit stream.
- readVarUInt64() - Method in class zserio.runtime.io.ByteArrayBitStreamReader
-
- RecursiveTypeInfo(TypeInfo.RecursiveTypeInfo.TypeInfoGetter) - Constructor for class zserio.runtime.typeinfo.TypeInfo.RecursiveTypeInfo
-
Constructor.
- RegexWalkFilter - Class in zserio.runtime.walker
-
Walk filter which allows to walk only paths matching the given regex.
- RegexWalkFilter(String) - Constructor for class zserio.runtime.walker.RegexWalkFilter
-
Constructor.
- reset(int) - Method in class zserio.runtime.array.RawArray.BigIntegerRawArray
-
- reset(int) - Method in class zserio.runtime.array.RawArray.BitBufferRawArray
-
- reset(int) - Method in class zserio.runtime.array.RawArray.BooleanRawArray
-
- reset(int) - Method in class zserio.runtime.array.RawArray.ByteRawArray
-
- reset(int) - Method in class zserio.runtime.array.RawArray.BytesRawArray
-
- reset(int) - Method in class zserio.runtime.array.RawArray.DoubleRawArray
-
- reset(int) - Method in class zserio.runtime.array.RawArray.EnumRawArray
-
- reset(int) - Method in class zserio.runtime.array.RawArray.FloatRawArray
-
- reset(int) - Method in class zserio.runtime.array.RawArray.IntRawArray
-
- reset(int) - Method in class zserio.runtime.array.RawArray.LongRawArray
-
- reset(int) - Method in class zserio.runtime.array.RawArray.ObjectRawArray
-
- reset(int) - Method in interface zserio.runtime.array.RawArray
-
Resets the raw array.
- reset(int) - Method in class zserio.runtime.array.RawArray.ShortRawArray
-
- reset(int) - Method in class zserio.runtime.array.RawArray.StringRawArray
-
- TableInfo - Class in zserio.runtime.typeinfo
-
Type information for SQL database table.
- TableInfo(String, TypeInfo) - Constructor for class zserio.runtime.typeinfo.TableInfo
-
Constructor.
- TemplatableTypeInfoBase(String, SchemaType, JavaType, Class<?>, String, List<TypeInfo>) - Constructor for class zserio.runtime.typeinfo.TypeInfo.TemplatableTypeInfoBase
-
Constructor.
- toBigInteger() - Method in class zserio.runtime.array.ArrayElement.BigIntegerArrayElement
-
- toBigInteger() - Method in class zserio.runtime.array.ArrayElement.ByteArrayElement
-
- toBigInteger() - Method in class zserio.runtime.array.ArrayElement.IntArrayElement
-
- toBigInteger() - Method in interface zserio.runtime.array.ArrayElement.IntegralArrayElement
-
Converts the element value to big integer.
- toBigInteger() - Method in class zserio.runtime.array.ArrayElement.LongArrayElement
-
- toBigInteger() - Method in class zserio.runtime.array.ArrayElement.ShortArrayElement
-
- toByteArray() - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
Returns the underlying buffer content as byte array.
- toJsonFile(Object, String, int, WalkFilter) - Static method in class zserio.runtime.DebugStringUtil
-
Writes contents of given zserio object to debug file in JSON format using Walker with JsonWriter.
- toJsonFile(Object, String, int) - Static method in class zserio.runtime.DebugStringUtil
-
Writes contents of given zserio object to debug file in JSON format using Walker with JsonWriter.
- toJsonFile(Object, String, WalkFilter) - Static method in class zserio.runtime.DebugStringUtil
-
Writes contents of given zserio object to debug file in JSON format using Walker with JsonWriter.
- toJsonFile(Object, String) - Static method in class zserio.runtime.DebugStringUtil
-
Writes contents of given zserio object to debug file in JSON format using Walker with JsonWriter.
- toJsonStream(Object, Writer, int, WalkFilter) - Static method in class zserio.runtime.DebugStringUtil
-
Writes contents of given zserio object to debug stream in JSON format using Walker with JsonWriter.
- toJsonStream(Object, Writer, int) - Static method in class zserio.runtime.DebugStringUtil
-
Writes contents of given zserio object to debug stream in JSON format using Walker with JsonWriter.
- toJsonStream(Object, Writer, WalkFilter) - Static method in class zserio.runtime.DebugStringUtil
-
Writes contents of given zserio object to debug stream in JSON format using Walker with JsonWriter.
- toJsonStream(Object, Writer) - Static method in class zserio.runtime.DebugStringUtil
-
Writes contents of given zserio object to debug stream in JSON format using Walker with JsonWriter.
- toJsonString(Object, int, WalkFilter) - Static method in class zserio.runtime.DebugStringUtil
-
Gets debug string in JSON format using Walker with JsonWriter for given zserio object.
- toJsonString(Object, int) - Static method in class zserio.runtime.DebugStringUtil
-
Gets debug string in JSON format using Walker with JsonWriter for given zserio object.
- toJsonString(Object, WalkFilter) - Static method in class zserio.runtime.DebugStringUtil
-
Gets debug string in JSON format using Walker with JsonWriter for given zserio object.
- toJsonString(Object) - Static method in class zserio.runtime.DebugStringUtil
-
Gets debug string in JSON format using Walker with JsonWriter for given zserio object.
- toMaskedByteArray() - Method in class zserio.runtime.validation.ValidationBitStreamReader
-
Returns the read byte array with unused bits set to zero and with 'normalized' NaNs.
- TypeInfo - Interface in zserio.runtime.typeinfo
-
Type information interface which is returned from the generated zserio objects.
- TypeInfo.BitmaskTypeInfo - Class in zserio.runtime.typeinfo
-
Type information class for bitmask types.
- TypeInfo.BuiltinTypeInfo - Class in zserio.runtime.typeinfo
-
Type information abstract base class for builtin types.
- TypeInfo.ChoiceTypeInfo - Class in zserio.runtime.typeinfo
-
Type information class for choice types.
- TypeInfo.CompoundTypeInfoBase - Class in zserio.runtime.typeinfo
-
Type information abstract base class for compound types.
- TypeInfo.EnumTypeInfo - Class in zserio.runtime.typeinfo
-
Type information class for enumeration types.
- TypeInfo.FixedSizeBuiltinTypeInfo - Class in zserio.runtime.typeinfo
-
Type information abstract base class for fixed size builtin types.
- TypeInfo.PubsubTypeInfo - Class in zserio.runtime.typeinfo
-
Type information class for pubsub types.
- TypeInfo.RecursiveTypeInfo - Class in zserio.runtime.typeinfo
-
Type info for recursive types used as a wrapper around generated static typeInfo method to prevent
infinite recursion in type info definition.
- TypeInfo.RecursiveTypeInfo.TypeInfoGetter - Interface in zserio.runtime.typeinfo
-
Type info getter.
- TypeInfo.ServiceTypeInfo - Class in zserio.runtime.typeinfo
-
Type information class for service types.
- TypeInfo.SqlDatabaseTypeInfo - Class in zserio.runtime.typeinfo
-
Type information class for SQL database types.
- TypeInfo.SqlTableTypeInfo - Class in zserio.runtime.typeinfo
-
Type information class for SQL table types.
- TypeInfo.StructTypeInfo - Class in zserio.runtime.typeinfo
-
Type information class for structure types.
- TypeInfo.TemplatableTypeInfoBase - Class in zserio.runtime.typeinfo
-
Type information abstract base class for templatable types.
- TypeInfo.TypeInfoBase - Class in zserio.runtime.typeinfo
-
Type information abstract base class.
- TypeInfo.TypeInfoWithUnderlyingTypeBase - Class in zserio.runtime.typeinfo
-
Type information abstract base class for enumeration and bitmask types.
- TypeInfo.UnionTypeInfo - Class in zserio.runtime.typeinfo
-
Type information class for union types.
- TypeInfoBase(String, SchemaType, JavaType, Class<?>) - Constructor for class zserio.runtime.typeinfo.TypeInfo.TypeInfoBase
-
Constructor.
- TypeInfoUtil - Class in zserio.runtime.typeinfo
-
The type information helper utilities to check zserio schema.
- TypeInfoUtil() - Constructor for class zserio.runtime.typeinfo.TypeInfoUtil
-
- TypeInfoWithUnderlyingTypeBase(String, SchemaType, JavaType, Class<?>, TypeInfo, List<Supplier<Object>>) - Constructor for class zserio.runtime.typeinfo.TypeInfo.TypeInfoWithUnderlyingTypeBase
-
Constructor.
- walk(Object) - Method in class zserio.runtime.walker.Walker
-
Walks given zserio object which must be generated with type_info (see -withTypeInfoCode options).
- Walker - Class in zserio.runtime.walker
-
Walker through zserio objects, based on generated type info (see -withTypeInfoCode).
- Walker(WalkObserver) - Constructor for class zserio.runtime.walker.Walker
-
Constructor from walk observer.
- Walker(WalkObserver, WalkFilter) - Constructor for class zserio.runtime.walker.Walker
-
Constructor from walk observer and walk filter.
- WalkerConst - Class in zserio.runtime.walker
-
The constants used by walker, walker observers and walker filters.
- WalkerConst() - Constructor for class zserio.runtime.walker.WalkerConst
-
- WalkFilter - Interface in zserio.runtime.walker
-
Interface for filters which can influence the walking.
- WalkObserver - Interface in zserio.runtime.walker
-
Interface for observers which are called by the walker.
- write(BitStreamWriter) - Method in class zserio.runtime.array.Array
-
Writes the array element to the bit stream.
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.BitBufferArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.BitFieldBigIntegerArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.BitFieldByteArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.BitFieldIntArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.BitFieldLongArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.BitFieldShortArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.BoolArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.BytesArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.Float16ArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.Float32ArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.Float64ArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.ObjectArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.PackableObjectArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.SignedBitFieldByteArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.SignedBitFieldIntArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.SignedBitFieldLongArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.SignedBitFieldShortArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.StringArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarInt16ArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarInt32ArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarInt64ArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarIntArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarSizeArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarUInt16ArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarUInt32ArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarUInt64ArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.VarUIntArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in interface zserio.runtime.array.ArrayTraits
-
Writes the array element to the bit stream.
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.WriteObjectArrayTraits
-
- write(BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.ArrayTraits.WritePackableObjectArrayTraits
-
- write(ArrayTraits.IntegralArrayTraits, BitStreamWriter, ArrayElement.IntegralArrayElement) - Method in class zserio.runtime.array.DeltaContext
-
Writes the packed element to the bit stream.
- write(PackingContext, BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.PackedArrayTraits.IntegralPackedArrayTraits
-
- write(PackingContext, BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.PackedArrayTraits.ObjectPackedArrayTraits
-
- write(PackingContext, BitStreamWriter, ArrayElement) - Method in interface zserio.runtime.array.PackedArrayTraits
-
Writes the element to the bit stream.
- write(PackingContext, BitStreamWriter, ArrayElement) - Method in class zserio.runtime.array.PackedArrayTraits.WriteObjectPackedArrayTraits
-
- write(BitStreamWriter, boolean) - Method in interface zserio.runtime.io.InitializeOffsetsWriter
-
Deprecated.
Writes this objects to the given bit stream and optionally calls initializeOffsets.
- write(PackingContext, BitStreamWriter) - Method in interface zserio.runtime.io.PackableWriter
-
Writes this object which is an element of a packed array to the given bit stream.
- write(BitStreamWriter) - Method in interface zserio.runtime.io.Writer
-
Writes this objects to the given bit stream.
- writeBigInteger(BigInteger, int) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a given big integer value with the given number of bits to the underlying storage.
- writeBigInteger(BigInteger, int) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeBitBuffer(BitBuffer) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a bit buffer to the underlying storage.
- writeBitBuffer(BitBuffer) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeBits(long, int) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes the given value with the given number of unsigned bits to the underlying storage.
- writeBits(long, int) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeBool(boolean) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a boolean value to the underlying storage.
- writeBool(boolean) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeByte(byte) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a signed byte to the underlying storage.
- writeByte(byte) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeBytes(byte[]) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a Zserio bytes to the underlying storage.
- writeBytes(byte[]) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeFloat16(float) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a 16-bit float value to the underlying storage.
- writeFloat16(float) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeFloat32(float) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a 32-bit float value to the underlying storage.
- writeFloat32(float) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeFloat64(double) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a 64-bit float value to the underlying storage.
- writeFloat64(double) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeInt(int) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a signed integer to the underlying storage.
- writeInt(int) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeLong(long) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a signed long to the underlying storage.
- writeLong(long) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- WriteObjectArrayTraits(ElementFactory<E>) - Constructor for class zserio.runtime.array.ArrayTraits.WriteObjectArrayTraits
-
Constructor from element factory.
- WriteObjectPackedArrayTraits(PackableElementFactory<E>) - Constructor for class zserio.runtime.array.PackedArrayTraits.WriteObjectPackedArrayTraits
-
Constructor.
- WritePackableObjectArrayTraits(PackableElementFactory<E>) - Constructor for class zserio.runtime.array.ArrayTraits.WritePackableObjectArrayTraits
-
Constructor from element factory.
- writePacked(BitStreamWriter) - Method in class zserio.runtime.array.Array
-
Writes packed array to the bit stream.
- Writer - Interface in zserio.runtime.io
-
Interface for writing to bit stream for classes generated by Zserio.
- writeShort(short) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a signed short to the underlying storage.
- writeShort(short) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeSignedBits(long, int) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes the given value with the given number of signed bits to the underlying storage.
- writeSignedBits(long, int) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeString(String) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a Zserio string to the underlying storage in UTF-8 encoding.
- writeString(String) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeUnsignedByte(short) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes an unsigned byte to the underlying storage.
- writeUnsignedByte(short) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeUnsignedInt(long) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes an unsigned integer to the underlying storage.
- writeUnsignedInt(long) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeUnsignedShort(int) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes an unsigned short to the underlying storage.
- writeUnsignedShort(int) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeVarInt(long) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a variable signed integer value to the underlying storage.
- writeVarInt(long) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeVarInt16(short) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a variable 16 bit integer value to the underlying storage.
- writeVarInt16(short) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeVarInt32(int) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a variable 32 bit integer value to the underlying storage.
- writeVarInt32(int) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeVarInt64(long) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a variable 64 bit integer value to the underlying storage.
- writeVarInt64(long) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeVarSize(int) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a variable size integer value to the underlying storage.
- writeVarSize(int) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeVarUInt(BigInteger) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a variable unsigned integer value to the underlying storage.
- writeVarUInt(BigInteger) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeVarUInt16(short) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a variable 16 bit unsigned integer value to the underlying storage.
- writeVarUInt16(short) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeVarUInt32(int) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a variable 32 bit unsigned integer value to the underlying storage.
- writeVarUInt32(int) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-
- writeVarUInt64(long) - Method in interface zserio.runtime.io.BitStreamWriter
-
Writes a variable 64 bit unsigned integer value to the underlying storage.
- writeVarUInt64(long) - Method in class zserio.runtime.io.ByteArrayBitStreamWriter
-