Uses of Class
org.apache.qpid.protonj2.codec.DecodeException
-
-
Uses of DecodeException in org.apache.qpid.protonj2.codec
Methods in org.apache.qpid.protonj2.codec that throw DecodeException Modifier and Type Method Description String
DecoderState. decodeUTF8(ProtonBuffer buffer, int length)
Given a set of UTF-8 encoded bytes decode and return the String that represents that UTF-8 value.String
StreamDecoderState. decodeUTF8(InputStream stream, int length)
Given a stream that will provide UTF-8 encoded bytes, decode and return the String that represents that UTF-8 value.TypeDecoder<?>
Decoder. peekNextTypeDecoder(ProtonBuffer buffer, DecoderState state)
Peeks ahead in the givenProtonBuffer
instance and returns aTypeDecoder
that can read the next encoded AMQP type from the buffer's bytes.StreamTypeDecoder<?>
StreamDecoder. peekNextTypeDecoder(InputStream stream, StreamDecoderState state)
Peeks ahead in the givenInputStream
instance and returns aTypeDecoder
that can read the next encoded AMQP type from the stream's bytes.V[]
StreamTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Reads a series of this type that have been encoded into the body of an Array type.V[]
TypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Reads a series of this type that have been encoded into the body of an Array type.Binary
Decoder. readBinary(ProtonBuffer buffer, DecoderState state)
Reads an encodedBinary
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Binary
StreamDecoder. readBinary(InputStream stream, StreamDecoderState state)
Reads an encodedBinary
value from the givenInputStream
assuming that the next value in the byte stream is that type.ProtonBuffer
Decoder. readBinaryAsBuffer(ProtonBuffer buffer, DecoderState state)
Reads an encodedBinary
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.ProtonBuffer
StreamDecoder. readBinaryAsBuffer(InputStream stream, StreamDecoderState state)
Reads an encodedBinary
value from the givenInputStream
assuming that the next value in the byte stream is that type.Boolean
Decoder. readBoolean(ProtonBuffer buffer, DecoderState state)
Reads an encodedBoolean
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.boolean
Decoder. readBoolean(ProtonBuffer buffer, DecoderState state, boolean defaultValue)
Reads an encodedByte
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Boolean
StreamDecoder. readBoolean(InputStream stream, StreamDecoderState state)
Reads an encodedBoolean
value from the givenInputStream
assuming that the next value in the byte stream is that type.boolean
StreamDecoder. readBoolean(InputStream stream, StreamDecoderState state, boolean defaultValue)
Reads an encodedByte
value from the givenInputStream
assuming that the next value in the byte stream is that type.Byte
Decoder. readByte(ProtonBuffer buffer, DecoderState state)
Reads an encodedByte
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.byte
Decoder. readByte(ProtonBuffer buffer, DecoderState state, byte defaultValue)
Reads an encodedByte
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Byte
StreamDecoder. readByte(InputStream stream, StreamDecoderState state)
Reads an encodedByte
value from the givenInputStream
assuming that the next value in the byte stream is that type.byte
StreamDecoder. readByte(InputStream stream, StreamDecoderState state, byte defaultValue)
Reads an encodedByte
value from the givenInputStream
assuming that the next value in the byte stream is that type.Character
Decoder. readCharacter(ProtonBuffer buffer, DecoderState state)
Reads an encodedCharacter
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.char
Decoder. readCharacter(ProtonBuffer buffer, DecoderState state, char defaultValue)
Reads an encodedCharacter
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Character
StreamDecoder. readCharacter(InputStream stream, StreamDecoderState state)
Reads an encodedCharacter
value from the givenInputStream
assuming that the next value in the byte stream is that type.char
StreamDecoder. readCharacter(InputStream stream, StreamDecoderState state, char defaultValue)
Reads an encodedCharacter
value from the givenInputStream
assuming that the next value in the byte stream is that type.Decimal128
Decoder. readDecimal128(ProtonBuffer buffer, DecoderState state)
Reads an encodedDecimal128
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Decimal128
StreamDecoder. readDecimal128(InputStream stream, StreamDecoderState state)
Reads an encodedDecimal128
value from the givenInputStream
assuming that the next value in the byte stream is that type.Decimal32
Decoder. readDecimal32(ProtonBuffer buffer, DecoderState state)
Reads an encodedDecimal32
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Decimal32
StreamDecoder. readDecimal32(InputStream stream, StreamDecoderState state)
Reads an encodedDecimal32
value from the givenInputStream
assuming that the next value in the byte stream is that type.Decimal64
Decoder. readDecimal64(ProtonBuffer buffer, DecoderState state)
Reads an encodedDecimal64
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Decimal64
StreamDecoder. readDecimal64(InputStream stream, StreamDecoderState state)
Reads an encodedDecimal64
value from the givenInputStream
assuming that the next value in the byte stream is that type.DeliveryTag
Decoder. readDeliveryTag(ProtonBuffer buffer, DecoderState state)
This method expects to read aBinary
encoded type from the provided buffer and constructs aDeliveryTag
type that wraps the bytes encoded.DeliveryTag
StreamDecoder. readDeliveryTag(InputStream stream, StreamDecoderState state)
This method expects to read aBinary
encoded type from the provided stream and constructs aDeliveryTag
type that wraps the bytes encoded.Double
Decoder. readDouble(ProtonBuffer buffer, DecoderState state)
Reads an encodedDouble
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.double
Decoder. readDouble(ProtonBuffer buffer, DecoderState state, double defaultValue)
Reads an encodedDouble
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Double
StreamDecoder. readDouble(InputStream stream, StreamDecoderState state)
Reads an encodedDouble
value from the givenInputStream
assuming that the next value in the byte stream is that type.double
StreamDecoder. readDouble(InputStream stream, StreamDecoderState state, double defaultValue)
Reads an encodedDouble
value from the givenInputStream
assuming that the next value in the byte stream is that type.Float
Decoder. readFloat(ProtonBuffer buffer, DecoderState state)
Reads an encodedFloat
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.float
Decoder. readFloat(ProtonBuffer buffer, DecoderState state, float defaultValue)
Reads an encodedFloat
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Float
StreamDecoder. readFloat(InputStream stream, StreamDecoderState state)
Reads an encodedFloat
value from the givenInputStream
assuming that the next value in the byte stream is that type.float
StreamDecoder. readFloat(InputStream stream, StreamDecoderState state, float defaultValue)
Reads an encodedFloat
value from the givenInputStream
assuming that the next value in the byte stream is that type.Integer
Decoder. readInteger(ProtonBuffer buffer, DecoderState state)
Reads an encodedInteger
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.int
Decoder. readInteger(ProtonBuffer buffer, DecoderState state, int defaultValue)
Reads an encodedInteger
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Integer
StreamDecoder. readInteger(InputStream stream, StreamDecoderState state)
Reads an encodedInteger
value from the givenInputStream
assuming that the next value in the byte stream is that type.int
StreamDecoder. readInteger(InputStream stream, StreamDecoderState state, int defaultValue)
Reads an encodedInteger
value from the givenInputStream
assuming that the next value in the byte stream is that type.<V> List<V>
Decoder. readList(ProtonBuffer buffer, DecoderState state)
Reads an encodedList
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.<V> List<V>
StreamDecoder. readList(InputStream stream, StreamDecoderState state)
Reads an encodedList
value from the givenInputStream
assuming that the next value in the byte stream is that type.Long
Decoder. readLong(ProtonBuffer buffer, DecoderState state)
Reads an encodedLong
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.long
Decoder. readLong(ProtonBuffer buffer, DecoderState state, long defaultValue)
Reads an encodedLong
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Long
StreamDecoder. readLong(InputStream stream, StreamDecoderState state)
Reads an encodedLong
value from the givenInputStream
assuming that the next value in the byte stream is that type.long
StreamDecoder. readLong(InputStream stream, StreamDecoderState state, long defaultValue)
Reads an encodedLong
value from the givenInputStream
assuming that the next value in the byte stream is that type.<K,V>
Map<K,V>Decoder. readMap(ProtonBuffer buffer, DecoderState state)
Reads an encodedMap
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.<K,V>
Map<K,V>StreamDecoder. readMap(InputStream stream, StreamDecoderState state)
Reads an encodedMap
value from the givenInputStream
assuming that the next value in the byte stream is that type.<T> T[]
Decoder. readMultiple(ProtonBuffer buffer, DecoderState state, Class<T> clazz)
Reads one or more encoded values from the givenProtonBuffer
an return it as an array ofObject
instances which the caller must then interpret.<T> T[]
StreamDecoder. readMultiple(InputStream stream, StreamDecoderState state, Class<T> clazz)
Reads one or more encoded values from the givenInputStream
an return it as an array ofObject
instances which the caller must then interpret.TypeDecoder<?>
Decoder. readNextTypeDecoder(ProtonBuffer buffer, DecoderState state)
Reads from the givenProtonBuffer
instance and returns aTypeDecoder
that can read the next encoded AMQP type from the buffer's bytes.StreamTypeDecoder<?>
StreamDecoder. readNextTypeDecoder(InputStream stream, StreamDecoderState state)
Reads from the givenInputStream
instance and returns aStreamTypeDecoder
that can read the next encoded AMQP type from the stream's bytes.Object
Decoder. readObject(ProtonBuffer buffer, DecoderState state)
Reads an encoded value from the givenProtonBuffer
an return it as anObject
which the caller must then interpret.<T> T
Decoder. readObject(ProtonBuffer buffer, DecoderState state, Class<T> clazz)
Reads an encoded value from the givenProtonBuffer
an return it as anObject
which the caller must then interpret.Object
StreamDecoder. readObject(InputStream stream, StreamDecoderState state)
Reads an encoded value from the givenInputStream
an return it as anObject
which the caller must then interpret.<T> T
StreamDecoder. readObject(InputStream stream, StreamDecoderState state, Class<T> clazz)
Reads an encoded value from the givenInputStream
an return it as anObject
which the caller must then interpret.Short
Decoder. readShort(ProtonBuffer buffer, DecoderState state)
Reads an encodedShort
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.short
Decoder. readShort(ProtonBuffer buffer, DecoderState state, short defaultValue)
Reads an encodedShort
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Short
StreamDecoder. readShort(InputStream stream, StreamDecoderState state)
Reads an encodedShort
value from the givenInputStream
assuming that the next value in the byte stream is that type.short
StreamDecoder. readShort(InputStream stream, StreamDecoderState state, short defaultValue)
Reads an encodedShort
value from the givenInputStream
assuming that the next value in the byte stream is that type.String
Decoder. readString(ProtonBuffer buffer, DecoderState state)
Reads an encodedString
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.String
StreamDecoder. readString(InputStream stream, StreamDecoderState state)
Reads an encodedString
value from the givenInputStream
assuming that the next value in the byte stream is that type.Symbol
Decoder. readSymbol(ProtonBuffer buffer, DecoderState state)
Reads an encodedSymbol
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.String
Decoder. readSymbol(ProtonBuffer buffer, DecoderState state, String defaultValue)
Reads an encodedString
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Symbol
StreamDecoder. readSymbol(InputStream stream, StreamDecoderState state)
Reads an encodedSymbol
value from the givenInputStream
assuming that the next value in the byte stream is that type.String
StreamDecoder. readSymbol(InputStream stream, StreamDecoderState state, String defaultValue)
Reads an encodedString
value from the givenInputStream
assuming that the next value in the byte stream is that type.Long
Decoder. readTimestamp(ProtonBuffer buffer, DecoderState state)
Reads an encoded AMQP time stamp value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.long
Decoder. readTimestamp(ProtonBuffer buffer, DecoderState state, long defaultValue)
Reads an encoded AMQP time stamp value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Long
StreamDecoder. readTimestamp(InputStream stream, StreamDecoderState state)
Reads an encoded AMQP time stamp value from the givenInputStream
assuming that the next value in the byte stream is that type.long
StreamDecoder. readTimestamp(InputStream stream, StreamDecoderState state, long defaultValue)
Reads an encoded AMQP time stamp value from the givenInputStream
assuming that the next value in the byte stream is that type.UnsignedByte
Decoder. readUnsignedByte(ProtonBuffer buffer, DecoderState state)
Reads an encodedUnsignedByte
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.byte
Decoder. readUnsignedByte(ProtonBuffer buffer, DecoderState state, byte defaultValue)
Reads an encodedUnsignedByte
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.UnsignedByte
StreamDecoder. readUnsignedByte(InputStream stream, StreamDecoderState state)
Reads an encodedUnsignedByte
value from the givenInputStream
assuming that the next value in the byte stream is that type.byte
StreamDecoder. readUnsignedByte(InputStream stream, StreamDecoderState state, byte defaultValue)
Reads an encodedUnsignedByte
value from the givenInputStream
assuming that the next value in the byte stream is that type.UnsignedInteger
Decoder. readUnsignedInteger(ProtonBuffer buffer, DecoderState state)
Reads an encodedUnsignedInteger
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.int
Decoder. readUnsignedInteger(ProtonBuffer buffer, DecoderState state, int defaultValue)
Reads an encodedUnsignedInteger
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.long
Decoder. readUnsignedInteger(ProtonBuffer buffer, DecoderState state, long defaultValue)
Reads an encodedUnsignedInteger
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.UnsignedInteger
StreamDecoder. readUnsignedInteger(InputStream stream, StreamDecoderState state)
Reads an encodedUnsignedInteger
value from the givenInputStream
assuming that the next value in the byte stream is that type.int
StreamDecoder. readUnsignedInteger(InputStream stream, StreamDecoderState state, int defaultValue)
Reads an encodedUnsignedInteger
value from the givenInputStream
assuming that the next value in the byte stream is that type.long
StreamDecoder. readUnsignedInteger(InputStream stream, StreamDecoderState state, long defaultValue)
Reads an encodedUnsignedInteger
value from the givenInputStream
assuming that the next value in the byte stream is that type.UnsignedLong
Decoder. readUnsignedLong(ProtonBuffer buffer, DecoderState state)
Reads an encodedUnsignedLong
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.long
Decoder. readUnsignedLong(ProtonBuffer buffer, DecoderState state, long defaultValue)
Reads an encodedUnsignedLong
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.UnsignedLong
StreamDecoder. readUnsignedLong(InputStream stream, StreamDecoderState state)
Reads an encodedUnsignedLong
value from the givenInputStream
assuming that the next value in the byte stream is that type.long
StreamDecoder. readUnsignedLong(InputStream stream, StreamDecoderState state, long defaultValue)
Reads an encodedUnsignedLong
value from the givenInputStream
assuming that the next value in the byte stream is that type.UnsignedShort
Decoder. readUnsignedShort(ProtonBuffer buffer, DecoderState state)
Reads an encodedUnsignedShort
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.int
Decoder. readUnsignedShort(ProtonBuffer buffer, DecoderState state, int defaultValue)
Reads an encodedUnsignedShort
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.short
Decoder. readUnsignedShort(ProtonBuffer buffer, DecoderState state, short defaultValue)
Reads an encodedUnsignedShort
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.UnsignedShort
StreamDecoder. readUnsignedShort(InputStream stream, StreamDecoderState state)
Reads an encodedUnsignedShort
value from the givenInputStream
assuming that the next value in the byte stream is that type.int
StreamDecoder. readUnsignedShort(InputStream stream, StreamDecoderState state, int defaultValue)
Reads an encodedUnsignedShort
value from the givenInputStream
assuming that the next value in the byte stream is that type.short
StreamDecoder. readUnsignedShort(InputStream stream, StreamDecoderState state, short defaultValue)
Reads an encodedUnsignedShort
value from the givenInputStream
assuming that the next value in the byte stream is that type.UUID
Decoder. readUUID(ProtonBuffer buffer, DecoderState state)
Reads an encodedUUID
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.UUID
StreamDecoder. readUUID(InputStream stream, StreamDecoderState state)
Reads an encodedUUID
value from the givenInputStream
assuming that the next value in the byte stream is that type.V
StreamTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Reads the next type from the given buffer and returns it.V
TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Reads the next type from the given buffer and returns it.void
StreamTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
Skips over the bytes that compose the type this descriptor decodes.void
TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
Skips over the bytes that compose the type this descriptor decodes. -
Uses of DecodeException in org.apache.qpid.protonj2.codec.decoders
Methods in org.apache.qpid.protonj2.codec.decoders that throw DecodeException Modifier and Type Method Description protected static void
AbstractDescribedTypeDecoder. checkIsExpectedType(Class<?> expected, StreamTypeDecoder<?> actual)
protected static void
AbstractDescribedTypeDecoder. checkIsExpectedType(Class<?> expected, TypeDecoder<?> actual)
protected static <E> E
AbstractDescribedTypeDecoder. checkIsExpectedTypeAndCast(Class<?> expected, StreamTypeDecoder<?> actual)
protected static <E> E
AbstractDescribedTypeDecoder. checkIsExpectedTypeAndCast(Class<?> expected, TypeDecoder<?> actual)
String
ProtonDecoderState. decodeUTF8(ProtonBuffer buffer, int length)
String
ProtonStreamDecoderState. decodeUTF8(InputStream stream, int length)
TypeDecoder<?>
ProtonDecoder. peekNextTypeDecoder(ProtonBuffer buffer, DecoderState state)
StreamTypeDecoder<?>
ProtonStreamDecoder. peekNextTypeDecoder(InputStream stream, StreamDecoderState state)
V[]
AbstractPrimitiveTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
V[]
AbstractPrimitiveTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
DescribedType[]
UnknownDescribedTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
DescribedType[]
UnknownDescribedTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Binary
ProtonDecoder. readBinary(ProtonBuffer buffer, DecoderState state)
Binary
ProtonStreamDecoder. readBinary(InputStream stream, StreamDecoderState state)
ProtonBuffer
ProtonDecoder. readBinaryAsBuffer(ProtonBuffer buffer, DecoderState state)
ProtonBuffer
ProtonStreamDecoder. readBinaryAsBuffer(InputStream stream, StreamDecoderState state)
Boolean
ProtonDecoder. readBoolean(ProtonBuffer buffer, DecoderState state)
boolean
ProtonDecoder. readBoolean(ProtonBuffer buffer, DecoderState state, boolean defaultValue)
Boolean
ProtonStreamDecoder. readBoolean(InputStream stream, StreamDecoderState state)
boolean
ProtonStreamDecoder. readBoolean(InputStream stream, StreamDecoderState state, boolean defaultValue)
Byte
ProtonDecoder. readByte(ProtonBuffer buffer, DecoderState state)
byte
ProtonDecoder. readByte(ProtonBuffer buffer, DecoderState state, byte defaultValue)
Byte
ProtonStreamDecoder. readByte(InputStream stream, StreamDecoderState state)
byte
ProtonStreamDecoder. readByte(InputStream stream, StreamDecoderState state, byte defaultValue)
static byte
ProtonStreamUtils. readByte(InputStream stream)
Reads a single byte from the givenInputStream
and thrown aDecodeException
if theInputStream
indicates an EOF condition was encountered.static byte[]
ProtonStreamUtils. readBytes(InputStream stream, int length)
Reads the given number of bytes from the providedInputStream
into an array and return that to the caller.Character
ProtonDecoder. readCharacter(ProtonBuffer buffer, DecoderState state)
char
ProtonDecoder. readCharacter(ProtonBuffer buffer, DecoderState state, char defaultValue)
Character
ProtonStreamDecoder. readCharacter(InputStream stream, StreamDecoderState state)
char
ProtonStreamDecoder. readCharacter(InputStream stream, StreamDecoderState state, char defaultValue)
Decimal128
ProtonDecoder. readDecimal128(ProtonBuffer buffer, DecoderState state)
Decimal128
ProtonStreamDecoder. readDecimal128(InputStream stream, StreamDecoderState state)
Decimal32
ProtonDecoder. readDecimal32(ProtonBuffer buffer, DecoderState state)
Decimal32
ProtonStreamDecoder. readDecimal32(InputStream stream, StreamDecoderState state)
Decimal64
ProtonDecoder. readDecimal64(ProtonBuffer buffer, DecoderState state)
Decimal64
ProtonStreamDecoder. readDecimal64(InputStream stream, StreamDecoderState state)
DeliveryTag
ProtonDecoder. readDeliveryTag(ProtonBuffer buffer, DecoderState state)
DeliveryTag
ProtonStreamDecoder. readDeliveryTag(InputStream stream, StreamDecoderState state)
Double
ProtonDecoder. readDouble(ProtonBuffer buffer, DecoderState state)
double
ProtonDecoder. readDouble(ProtonBuffer buffer, DecoderState state, double defaultValue)
Double
ProtonStreamDecoder. readDouble(InputStream stream, StreamDecoderState state)
double
ProtonStreamDecoder. readDouble(InputStream stream, StreamDecoderState state, double defaultValue)
static byte
ProtonStreamUtils. readEncodingCode(InputStream stream)
Reads a single byte from the givenInputStream
and thrown aDecodeException
if theInputStream
indicates an EOF condition was encountered.Float
ProtonDecoder. readFloat(ProtonBuffer buffer, DecoderState state)
float
ProtonDecoder. readFloat(ProtonBuffer buffer, DecoderState state, float defaultValue)
Float
ProtonStreamDecoder. readFloat(InputStream stream, StreamDecoderState state)
float
ProtonStreamDecoder. readFloat(InputStream stream, StreamDecoderState state, float defaultValue)
Integer
ProtonDecoder. readInteger(ProtonBuffer buffer, DecoderState state)
int
ProtonDecoder. readInteger(ProtonBuffer buffer, DecoderState state, int defaultValue)
Integer
ProtonStreamDecoder. readInteger(InputStream stream, StreamDecoderState state)
int
ProtonStreamDecoder. readInteger(InputStream stream, StreamDecoderState state, int defaultValue)
<V> List<V>
ProtonDecoder. readList(ProtonBuffer buffer, DecoderState state)
<V> List<V>
ProtonStreamDecoder. readList(InputStream stream, StreamDecoderState state)
Long
ProtonDecoder. readLong(ProtonBuffer buffer, DecoderState state)
long
ProtonDecoder. readLong(ProtonBuffer buffer, DecoderState state, long defaultValue)
Long
ProtonStreamDecoder. readLong(InputStream stream, StreamDecoderState state)
long
ProtonStreamDecoder. readLong(InputStream stream, StreamDecoderState state, long defaultValue)
<K,V>
Map<K,V>ProtonDecoder. readMap(ProtonBuffer buffer, DecoderState state)
<K,V>
Map<K,V>ProtonStreamDecoder. readMap(InputStream stream, StreamDecoderState state)
<T> T[]
ProtonDecoder. readMultiple(ProtonBuffer buffer, DecoderState state, Class<T> clazz)
<T> T[]
ProtonStreamDecoder. readMultiple(InputStream stream, StreamDecoderState state, Class<T> clazz)
TypeDecoder<?>
ProtonDecoder. readNextTypeDecoder(ProtonBuffer buffer, DecoderState state)
StreamTypeDecoder<?>
ProtonStreamDecoder. readNextTypeDecoder(InputStream stream, StreamDecoderState state)
Object
ProtonDecoder. readObject(ProtonBuffer buffer, DecoderState state)
<T> T
ProtonDecoder. readObject(ProtonBuffer buffer, DecoderState state, Class<T> clazz)
Object
ProtonStreamDecoder. readObject(InputStream stream, StreamDecoderState state)
<T> T
ProtonStreamDecoder. readObject(InputStream stream, StreamDecoderState state, Class<T> clazz)
Short
ProtonDecoder. readShort(ProtonBuffer buffer, DecoderState state)
short
ProtonDecoder. readShort(ProtonBuffer buffer, DecoderState state, short defaultValue)
Short
ProtonStreamDecoder. readShort(InputStream stream, StreamDecoderState state)
short
ProtonStreamDecoder. readShort(InputStream stream, StreamDecoderState state, short defaultValue)
String
ProtonDecoder. readString(ProtonBuffer buffer, DecoderState state)
String
ProtonStreamDecoder. readString(InputStream stream, StreamDecoderState state)
Symbol
ProtonDecoder. readSymbol(ProtonBuffer buffer, DecoderState state)
String
ProtonDecoder. readSymbol(ProtonBuffer buffer, DecoderState state, String defaultValue)
Symbol
ProtonStreamDecoder. readSymbol(InputStream stream, StreamDecoderState state)
String
ProtonStreamDecoder. readSymbol(InputStream stream, StreamDecoderState state, String defaultValue)
Long
ProtonDecoder. readTimestamp(ProtonBuffer buffer, DecoderState state)
long
ProtonDecoder. readTimestamp(ProtonBuffer buffer, DecoderState state, long defaultValue)
Long
ProtonStreamDecoder. readTimestamp(InputStream stream, StreamDecoderState state)
long
ProtonStreamDecoder. readTimestamp(InputStream stream, StreamDecoderState state, long defaultValue)
UnsignedByte
ProtonDecoder. readUnsignedByte(ProtonBuffer buffer, DecoderState state)
byte
ProtonDecoder. readUnsignedByte(ProtonBuffer buffer, DecoderState state, byte defaultValue)
UnsignedByte
ProtonStreamDecoder. readUnsignedByte(InputStream stream, StreamDecoderState state)
byte
ProtonStreamDecoder. readUnsignedByte(InputStream stream, StreamDecoderState state, byte defaultValue)
UnsignedInteger
ProtonDecoder. readUnsignedInteger(ProtonBuffer buffer, DecoderState state)
int
ProtonDecoder. readUnsignedInteger(ProtonBuffer buffer, DecoderState state, int defaultValue)
long
ProtonDecoder. readUnsignedInteger(ProtonBuffer buffer, DecoderState state, long defaultValue)
UnsignedInteger
ProtonStreamDecoder. readUnsignedInteger(InputStream stream, StreamDecoderState state)
int
ProtonStreamDecoder. readUnsignedInteger(InputStream stream, StreamDecoderState state, int defaultValue)
long
ProtonStreamDecoder. readUnsignedInteger(InputStream stream, StreamDecoderState state, long defaultValue)
UnsignedLong
ProtonDecoder. readUnsignedLong(ProtonBuffer buffer, DecoderState state)
long
ProtonDecoder. readUnsignedLong(ProtonBuffer buffer, DecoderState state, long defaultValue)
UnsignedLong
ProtonStreamDecoder. readUnsignedLong(InputStream stream, StreamDecoderState state)
long
ProtonStreamDecoder. readUnsignedLong(InputStream stream, StreamDecoderState state, long defaultValue)
UnsignedShort
ProtonDecoder. readUnsignedShort(ProtonBuffer buffer, DecoderState state)
int
ProtonDecoder. readUnsignedShort(ProtonBuffer buffer, DecoderState state, int defaultValue)
short
ProtonDecoder. readUnsignedShort(ProtonBuffer buffer, DecoderState state, short defaultValue)
UnsignedShort
ProtonStreamDecoder. readUnsignedShort(InputStream stream, StreamDecoderState state)
int
ProtonStreamDecoder. readUnsignedShort(InputStream stream, StreamDecoderState state, int defaultValue)
short
ProtonStreamDecoder. readUnsignedShort(InputStream stream, StreamDecoderState state, short defaultValue)
UUID
ProtonDecoder. readUUID(ProtonBuffer buffer, DecoderState state)
UUID
ProtonStreamDecoder. readUUID(InputStream stream, StreamDecoderState state)
DescribedType
UnknownDescribedTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
DescribedType
UnknownDescribedTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
static InputStream
ProtonStreamUtils. reset(InputStream stream)
Attempts to reset the providedInputStream
to a previously marked point.void
UnknownDescribedTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
UnknownDescribedTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
-
Uses of DecodeException in org.apache.qpid.protonj2.codec.decoders.messaging
Methods in org.apache.qpid.protonj2.codec.decoders.messaging that throw DecodeException Modifier and Type Method Description Accepted[]
AcceptedTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Accepted[]
AcceptedTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
AmqpSequence[]
AmqpSequenceTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
AmqpSequence[]
AmqpSequenceTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
AmqpValue[]
AmqpValueTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
AmqpValue[]
AmqpValueTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
ApplicationProperties[]
ApplicationPropertiesTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
ApplicationProperties[]
ApplicationPropertiesTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Data[]
DataTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Data[]
DataTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
DeleteOnClose[]
DeleteOnCloseTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
DeleteOnClose[]
DeleteOnCloseTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
DeleteOnNoLinksOrMessages[]
DeleteOnNoLinksOrMessagesTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
DeleteOnNoLinksOrMessages[]
DeleteOnNoLinksOrMessagesTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
DeleteOnNoLinks[]
DeleteOnNoLinksTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
DeleteOnNoLinks[]
DeleteOnNoLinksTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
DeleteOnNoMessages[]
DeleteOnNoMessagesTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
DeleteOnNoMessages[]
DeleteOnNoMessagesTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
DeliveryAnnotations[]
DeliveryAnnotationsTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
DeliveryAnnotations[]
DeliveryAnnotationsTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Footer[]
FooterTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Footer[]
FooterTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Header[]
HeaderTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Header[]
HeaderTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
MessageAnnotations[]
MessageAnnotationsTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
MessageAnnotations[]
MessageAnnotationsTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Modified[]
ModifiedTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Modified[]
ModifiedTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Properties[]
PropertiesTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Properties[]
PropertiesTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Received[]
ReceivedTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Received[]
ReceivedTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Rejected[]
RejectedTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Rejected[]
RejectedTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Released[]
ReleasedTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Released[]
ReleasedTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Source[]
SourceTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Source[]
SourceTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Target[]
TargetTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Target[]
TargetTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Accepted
AcceptedTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Accepted
AcceptedTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
AmqpSequence
AmqpSequenceTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
AmqpSequence<?>
AmqpSequenceTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
AmqpValue
AmqpValueTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
AmqpValue<?>
AmqpValueTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
ApplicationProperties
ApplicationPropertiesTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
ApplicationProperties
ApplicationPropertiesTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Data
DataTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Data
DataTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
DeleteOnClose
DeleteOnCloseTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
DeleteOnClose
DeleteOnCloseTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
DeleteOnNoLinksOrMessages
DeleteOnNoLinksOrMessagesTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
DeleteOnNoLinksOrMessages
DeleteOnNoLinksOrMessagesTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
DeleteOnNoLinks
DeleteOnNoLinksTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
DeleteOnNoLinks
DeleteOnNoLinksTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
DeleteOnNoMessages
DeleteOnNoMessagesTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
DeleteOnNoMessages
DeleteOnNoMessagesTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
DeliveryAnnotations
DeliveryAnnotationsTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
DeliveryAnnotations
DeliveryAnnotationsTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Footer
FooterTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Footer
FooterTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Header
HeaderTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Header
HeaderTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
MessageAnnotations
MessageAnnotationsTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
MessageAnnotations
MessageAnnotationsTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Modified
ModifiedTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Modified
ModifiedTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Properties
PropertiesTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Properties
PropertiesTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Received
ReceivedTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Received
ReceivedTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Rejected
RejectedTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Rejected
RejectedTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Released
ReleasedTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Released
ReleasedTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Source
SourceTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Source
SourceTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Target
TargetTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Target
TargetTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
void
AcceptedTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
AcceptedTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
AmqpSequenceTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
AmqpSequenceTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
AmqpValueTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
AmqpValueTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
ApplicationPropertiesTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
ApplicationPropertiesTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DataTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
DataTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DeleteOnCloseTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
DeleteOnCloseTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DeleteOnNoLinksOrMessagesTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
DeleteOnNoLinksOrMessagesTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DeleteOnNoLinksTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
DeleteOnNoLinksTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DeleteOnNoMessagesTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
DeleteOnNoMessagesTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DeliveryAnnotationsTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
DeliveryAnnotationsTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
FooterTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
FooterTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
HeaderTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
HeaderTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
MessageAnnotationsTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
MessageAnnotationsTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
ModifiedTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
ModifiedTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
PropertiesTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
PropertiesTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
ReceivedTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
ReceivedTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
RejectedTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
RejectedTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
ReleasedTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
ReleasedTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
SourceTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
SourceTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
TargetTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
TargetTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
-
Uses of DecodeException in org.apache.qpid.protonj2.codec.decoders.primitives
Methods in org.apache.qpid.protonj2.codec.decoders.primitives that throw DecodeException Modifier and Type Method Description protected int
Array32TypeDecoder. readCount(ProtonBuffer buffer)
protected int
Array8TypeDecoder. readCount(ProtonBuffer buffer)
int
List0TypeDecoder. readCount(InputStream stream)
int
List0TypeDecoder. readCount(ProtonBuffer buffer)
int
List32TypeDecoder. readCount(InputStream stream)
int
List32TypeDecoder. readCount(ProtonBuffer buffer)
int
List8TypeDecoder. readCount(InputStream stream)
int
List8TypeDecoder. readCount(ProtonBuffer buffer)
int
ListTypeDecoder. readCount(InputStream stream)
Reads the number of elements contained in the encoded list from the providedInputStream
.int
ListTypeDecoder. readCount(ProtonBuffer buffer)
Reads the number of elements contained in the encoded list from the providedProtonBuffer
.int
Map32TypeDecoder. readCount(InputStream stream)
int
Map32TypeDecoder. readCount(ProtonBuffer buffer)
int
Map8TypeDecoder. readCount(InputStream stream)
int
Map8TypeDecoder. readCount(ProtonBuffer buffer)
int
MapTypeDecoder. readCount(InputStream stream)
Reads the count of entries in the encoded Map.int
MapTypeDecoder. readCount(ProtonBuffer buffer)
Reads the count of entries in the encoded Map.boolean
BooleanFalseTypeDecoder. readPrimitiveValue(InputStream stream, StreamDecoderState state)
boolean
BooleanFalseTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
boolean
BooleanTrueTypeDecoder. readPrimitiveValue(InputStream stream, StreamDecoderState state)
boolean
BooleanTrueTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
boolean
BooleanTypeDecoder. readPrimitiveValue(InputStream stream, StreamDecoderState state)
Reads the primitive value from the givenInputStream
and returns it.boolean
BooleanTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.byte
ByteTypeDecoder. readPrimitiveValue(InputStream stream, StreamDecoderState state)
Reads the primitive value from the givenInputStream
and returns it.byte
ByteTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.char
CharacterTypeDecoder. readPrimitiveValue(InputStream stream, StreamDecoderState state)
Reads the primitive value from the givenInputStream
and returns it.char
CharacterTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.double
DoubleTypeDecoder. readPrimitiveValue(InputStream stream, StreamDecoderState state)
Reads the primitive value from the givenInputStream
and returns it.double
DoubleTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.float
FloatTypeDecoder. readPrimitiveValue(InputStream stream, StreamDecoderState state)
Reads the primitive value from the givenInputStream
and returns it.float
FloatTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.int
Integer32TypeDecoder. readPrimitiveValue(InputStream stream, StreamDecoderState state)
Reads the primitive value from the givenInputStream
and returns it.int
Integer32TypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.int
Integer8TypeDecoder. readPrimitiveValue(InputStream stream, StreamDecoderState state)
Reads the primitive value from the givenInputStream
and returns it.int
Integer8TypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.long
Long8TypeDecoder. readPrimitiveValue(InputStream stream, StreamDecoderState state)
long
Long8TypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
long
LongTypeDecoder. readPrimitiveValue(InputStream stream, StreamDecoderState state)
Reads the primitive value from the givenInputStream
and returns it.long
LongTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.short
ShortTypeDecoder. readPrimitiveValue(InputStream stream, StreamDecoderState state)
Reads the primitive value from the givenInputStream
and returns it.short
ShortTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.protected abstract int
AbstractSymbolTypeDecoder. readSize(InputStream stream)
Subclasses must read the correct number of bytes from the buffer to determine the size of the encoded Symbol value.protected abstract int
AbstractSymbolTypeDecoder. readSize(ProtonBuffer buffer)
Subclasses must read the correct number of bytes from the buffer to determine the size of the encoded Symbol value.protected int
Array32TypeDecoder. readSize(ProtonBuffer buffer)
protected int
Array8TypeDecoder. readSize(ProtonBuffer buffer)
int
Binary32TypeDecoder. readSize(ProtonBuffer buffer)
int
Binary8TypeDecoder. readSize(ProtonBuffer buffer)
int
BinaryTypeDecoder. readSize(InputStream stream)
Reads the encoded size value for the encoded binary payload and returns it.int
BinaryTypeDecoder. readSize(ProtonBuffer buffer)
Reads the encoded size value for the encoded binary payload and returns it.int
List0TypeDecoder. readSize(InputStream stream)
int
List0TypeDecoder. readSize(ProtonBuffer buffer)
int
List32TypeDecoder. readSize(InputStream stream)
int
List32TypeDecoder. readSize(ProtonBuffer buffer)
int
List8TypeDecoder. readSize(InputStream stream)
int
List8TypeDecoder. readSize(ProtonBuffer buffer)
int
ListTypeDecoder. readSize(InputStream stream)
Reads the size in bytes of the encoded list from the providedInputStream
.int
ListTypeDecoder. readSize(ProtonBuffer buffer)
Reads the size in bytes of the encoded list from the providedProtonBuffer
.int
Map32TypeDecoder. readSize(InputStream stream)
int
Map32TypeDecoder. readSize(ProtonBuffer buffer)
int
Map8TypeDecoder. readSize(InputStream stream)
int
Map8TypeDecoder. readSize(ProtonBuffer buffer)
int
MapTypeDecoder. readSize(InputStream stream)
Reads the encoded size of the underlying Map type.int
MapTypeDecoder. readSize(ProtonBuffer buffer)
Reads the encoded size of the underlying Map type.protected int
String32TypeDecoder. readSize(InputStream stream)
protected int
String32TypeDecoder. readSize(ProtonBuffer buffer)
protected int
String8TypeDecoder. readSize(InputStream stream)
protected int
String8TypeDecoder. readSize(ProtonBuffer buffer)
protected int
Symbol32TypeDecoder. readSize(InputStream stream)
protected int
Symbol32TypeDecoder. readSize(ProtonBuffer buffer)
protected int
Symbol8TypeDecoder. readSize(InputStream stream)
protected int
Symbol8TypeDecoder. readSize(ProtonBuffer buffer)
String
AbstractSymbolTypeDecoder. readString(InputStream stream, StreamDecoderState state)
Reads a String view of an encoded Symbol value from the given buffer.String
AbstractSymbolTypeDecoder. readString(ProtonBuffer buffer, DecoderState state)
Reads a String view of an encoded Symbol value from the given buffer.Object
AbstractArrayTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Object
AbstractArrayTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Binary
AbstractBinaryTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Binary
AbstractBinaryTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
List<Object>
AbstractListTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
List<Object>
AbstractListTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Map<Object,Object>
AbstractMapTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Map<Object,Object>
AbstractMapTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
String
AbstractStringTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
String
AbstractStringTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Symbol
AbstractSymbolTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Symbol
AbstractSymbolTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Boolean
BooleanFalseTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Boolean
BooleanFalseTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Boolean
BooleanTrueTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Boolean
BooleanTrueTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Boolean
BooleanTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Boolean
BooleanTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Byte
ByteTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Byte
ByteTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Character
CharacterTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Character
CharacterTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Decimal128
Decimal128TypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Decimal128
Decimal128TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Decimal32
Decimal32TypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Decimal32
Decimal32TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Decimal64
Decimal64TypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Decimal64
Decimal64TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Double
DoubleTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Double
DoubleTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Float
FloatTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Float
FloatTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Integer
Integer32TypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Integer
Integer32TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Integer
Integer8TypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Integer
Integer8TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
List<Object>
List0TypeDecoder. readValue(InputStream stream, StreamDecoderState state)
List<Object>
List0TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Long
Long8TypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Long
Long8TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Long
LongTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Long
LongTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Void
NullTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Void
NullTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Short
ShortTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Short
ShortTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Long
TimestampTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Long
TimestampTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
UnsignedByte
UnsignedByteTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
UnsignedByte
UnsignedByteTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
UnsignedInteger
UnsignedInteger0TypeDecoder. readValue(InputStream stream, StreamDecoderState state)
UnsignedInteger
UnsignedInteger0TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
UnsignedInteger
UnsignedInteger32TypeDecoder. readValue(InputStream stream, StreamDecoderState state)
UnsignedInteger
UnsignedInteger32TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
UnsignedInteger
UnsignedInteger8TypeDecoder. readValue(InputStream stream, StreamDecoderState state)
UnsignedInteger
UnsignedInteger8TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
UnsignedLong
UnsignedLong0TypeDecoder. readValue(InputStream stream, StreamDecoderState state)
UnsignedLong
UnsignedLong0TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
UnsignedLong
UnsignedLong64TypeDecoder. readValue(InputStream stream, StreamDecoderState state)
UnsignedLong
UnsignedLong64TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
UnsignedLong
UnsignedLong8TypeDecoder. readValue(InputStream stream, StreamDecoderState state)
UnsignedLong
UnsignedLong8TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
UnsignedShort
UnsignedShortTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
UnsignedShort
UnsignedShortTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
UUID
UUIDTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
UUID
UUIDTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
byte[]
AbstractBinaryTypeDecoder. readValueAsArray(InputStream stream, StreamDecoderState state)
Read and decode an AMQPBinary
into a byte array instance and return it.byte[]
AbstractBinaryTypeDecoder. readValueAsArray(ProtonBuffer buffer, DecoderState state)
Read and decode an AMQPBinary
into a byte array instance and return it.ProtonBuffer
AbstractBinaryTypeDecoder. readValueAsBuffer(InputStream stream, StreamDecoderState state)
Read and decode an AMQPBinary
into aProtonBuffer
instance and return it.ProtonBuffer
AbstractBinaryTypeDecoder. readValueAsBuffer(ProtonBuffer buffer, DecoderState state)
Read and decode an AMQPBinary
into aProtonBuffer
instance and return it.void
AbstractArrayTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
AbstractArrayTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
AbstractBinaryTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
AbstractBinaryTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
AbstractListTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
AbstractListTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
AbstractMapTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
AbstractMapTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
AbstractStringTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
AbstractStringTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
AbstractSymbolTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
AbstractSymbolTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
BooleanFalseTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
BooleanFalseTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
BooleanTrueTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
BooleanTrueTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
BooleanTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
BooleanTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
ByteTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
ByteTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
CharacterTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
CharacterTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
Decimal128TypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
Decimal128TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
Decimal32TypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
Decimal32TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
Decimal64TypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
Decimal64TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DoubleTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
DoubleTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
FloatTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
FloatTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
Integer32TypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
Integer32TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
Integer8TypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
Integer8TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
List0TypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
List0TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
Long8TypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
Long8TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
LongTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
LongTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
NullTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
NullTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
ShortTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
ShortTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
TimestampTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
TimestampTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UnsignedByteTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
UnsignedByteTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UnsignedInteger0TypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
UnsignedInteger0TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UnsignedInteger32TypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
UnsignedInteger32TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UnsignedInteger8TypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
UnsignedInteger8TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UnsignedLong0TypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
UnsignedLong0TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UnsignedLong64TypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
UnsignedLong64TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UnsignedLong8TypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
UnsignedLong8TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UnsignedShortTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
UnsignedShortTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UUIDTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
UUIDTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
-
Uses of DecodeException in org.apache.qpid.protonj2.codec.decoders.security
Methods in org.apache.qpid.protonj2.codec.decoders.security that throw DecodeException Modifier and Type Method Description SaslChallenge[]
SaslChallengeTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
SaslChallenge[]
SaslChallengeTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
SaslInit[]
SaslInitTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
SaslInit[]
SaslInitTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
SaslMechanisms[]
SaslMechanismsTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
SaslMechanisms[]
SaslMechanismsTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
SaslOutcome[]
SaslOutcomeTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
SaslOutcome[]
SaslOutcomeTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
SaslResponse[]
SaslResponseTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
SaslResponse[]
SaslResponseTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
SaslChallenge
SaslChallengeTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
SaslChallenge
SaslChallengeTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
SaslInit
SaslInitTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
SaslInit
SaslInitTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
SaslMechanisms
SaslMechanismsTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
SaslMechanisms
SaslMechanismsTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
SaslOutcome
SaslOutcomeTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
SaslOutcome
SaslOutcomeTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
SaslResponse
SaslResponseTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
SaslResponse
SaslResponseTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
void
SaslChallengeTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
SaslChallengeTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
SaslInitTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
SaslInitTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
SaslMechanismsTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
SaslMechanismsTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
SaslOutcomeTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
SaslOutcomeTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
SaslResponseTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
SaslResponseTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
-
Uses of DecodeException in org.apache.qpid.protonj2.codec.decoders.transactions
Methods in org.apache.qpid.protonj2.codec.decoders.transactions that throw DecodeException Modifier and Type Method Description Coordinator[]
CoordinatorTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Coordinator[]
CoordinatorTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Declared[]
DeclaredTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Declared[]
DeclaredTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Declare[]
DeclareTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Declare[]
DeclareTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Discharge[]
DischargeTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Discharge[]
DischargeTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
TransactionalState[]
TransactionStateTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
TransactionalState[]
TransactionStateTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Coordinator
CoordinatorTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Coordinator
CoordinatorTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Declared
DeclaredTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Declared
DeclaredTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Declare
DeclareTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Declare
DeclareTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Discharge
DischargeTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Discharge
DischargeTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
TransactionalState
TransactionStateTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
TransactionalState
TransactionStateTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
void
CoordinatorTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
CoordinatorTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DeclaredTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
DeclaredTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DeclareTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
DeclareTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DischargeTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
DischargeTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
TransactionStateTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
TransactionStateTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
-
Uses of DecodeException in org.apache.qpid.protonj2.codec.decoders.transport
Methods in org.apache.qpid.protonj2.codec.decoders.transport that throw DecodeException Modifier and Type Method Description Attach[]
AttachTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Attach[]
AttachTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Begin[]
BeginTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Begin[]
BeginTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Close[]
CloseTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Close[]
CloseTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Detach[]
DetachTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Detach[]
DetachTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Disposition[]
DispositionTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Disposition[]
DispositionTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
End[]
EndTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
End[]
EndTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
ErrorCondition[]
ErrorConditionTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
ErrorCondition[]
ErrorConditionTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Flow[]
FlowTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Flow[]
FlowTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Open[]
OpenTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Open[]
OpenTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Transfer[]
TransferTypeDecoder. readArrayElements(InputStream stream, StreamDecoderState state, int count)
Transfer[]
TransferTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Attach
AttachTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Attach
AttachTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Begin
BeginTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Begin
BeginTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Close
CloseTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Close
CloseTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Detach
DetachTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Detach
DetachTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Disposition
DispositionTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Disposition
DispositionTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
End
EndTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
End
EndTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
ErrorCondition
ErrorConditionTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
ErrorCondition
ErrorConditionTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Flow
FlowTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Flow
FlowTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Open
OpenTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Open
OpenTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Transfer
TransferTypeDecoder. readValue(InputStream stream, StreamDecoderState state)
Transfer
TransferTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
void
AttachTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
AttachTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
BeginTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
BeginTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
CloseTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
CloseTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DetachTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
DetachTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DispositionTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
DispositionTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
EndTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
EndTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
ErrorConditionTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
ErrorConditionTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
FlowTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
FlowTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
OpenTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
OpenTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
TransferTypeDecoder. skipValue(InputStream stream, StreamDecoderState state)
void
TransferTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
-