Class NullTypeEncoder
java.lang.Object
org.apache.qpid.protonj2.codec.encoders.AbstractPrimitiveTypeEncoder<Void>
org.apache.qpid.protonj2.codec.encoders.primitives.NullTypeEncoder
- All Implemented Interfaces:
PrimitiveTypeEncoder<Void>,TypeEncoder<Void>
Encoder of AMQP Null type values to a byte stream.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidwriteArray(ProtonBuffer buffer, EncoderState state, Object[] value) Write an array elements of the AMQP type to the given byte buffer.voidwriteRawArray(ProtonBuffer buffer, EncoderState state, Object[] values) Write an array elements of the AMQP type to the given byte buffer.voidwriteType(ProtonBuffer buffer, EncoderState state, Void value) Write the full AMQP type data to the given byte buffer.Methods inherited from class org.apache.qpid.protonj2.codec.encoders.AbstractPrimitiveTypeEncoder
isArrayType
-
Constructor Details
-
NullTypeEncoder
public NullTypeEncoder()
-
-
Method Details
-
getTypeClass
- Returns:
- the Class type that this encoder handles.
-
writeType
Description copied from interface:TypeEncoderWrite the full AMQP type data to the given byte buffer.This can consist of writing both a type constructor value and the bytes that make up the value of the type being written.
- Parameters:
buffer- The buffer to write the AMQP type tostate- The current encoder statevalue- The value that is to be written.
-
writeArray
Description copied from interface:TypeEncoderWrite an array elements of the AMQP type to the given byte buffer.This method writes the full Array type definition of an array of the type this encoder manages.
- Specified by:
writeArrayin interfaceTypeEncoder<Void>- Overrides:
writeArrayin classAbstractPrimitiveTypeEncoder<Void>- Parameters:
buffer- The buffer to write the AMQP array elements tostate- The current encoder statevalue- The array of values that is to be written.
-
writeRawArray
Description copied from interface:TypeEncoderWrite an array elements of the AMQP type to the given byte buffer.This method writes only the body portion of an AMQP array of this type, the array encoding, size and element count should be assumed to be managed by the caller.
- Parameters:
buffer- The buffer to write the AMQP array elements tostate- The current encoder statevalues- The array of values that is to be written.
-