Class BooleanDeserializer
- java.lang.Object
-
- org.apache.kafka.common.serialization.BooleanDeserializer
-
- All Implemented Interfaces:
Closeable,AutoCloseable,Deserializer<Boolean>
public class BooleanDeserializer extends Object implements Deserializer<Boolean>
-
-
Constructor Summary
Constructors Constructor Description BooleanDeserializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Booleandeserialize(String topic, byte[] data)Deserialize a record value from a byte array into a value or object.Booleandeserialize(String topic, Headers headers, ByteBuffer data)Deserialize a record value from a ByteBuffer into a value or object.-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.kafka.common.serialization.Deserializer
close, configure, deserialize
-
-
-
-
Method Detail
-
deserialize
public Boolean deserialize(String topic, byte[] data)
Description copied from interface:DeserializerDeserialize a record value from a byte array into a value or object.- Specified by:
deserializein interfaceDeserializer<Boolean>- Parameters:
topic- topic associated with the datadata- serialized bytes; may be null; implementations are recommended to handle null by returning a value or null rather than throwing an exception.- Returns:
- deserialized typed data; may be null
-
deserialize
public Boolean deserialize(String topic, Headers headers, ByteBuffer data)
Description copied from interface:DeserializerDeserialize a record value from a ByteBuffer into a value or object.- Specified by:
deserializein interfaceDeserializer<Boolean>- Parameters:
topic- topic associated with the dataheaders- headers associated with the record; may be empty.data- serialized ByteBuffer; may be null; implementations are recommended to handle null by returning a value or null rather than throwing an exception.- Returns:
- deserialized typed data; may be null
-
-