public class StringDeserializer extends Object implements Deserializer<String>
| Constructor and Description |
|---|
StringDeserializer() |
| Modifier and Type | Method and Description |
|---|---|
void | configure(Map<String,?> configs, boolean isKey)Configure this class. |
String | deserialize(String topic, byte[] data)Deserialize a record value from a byte array into a value or object. |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitclose, deserializepublic void configure(Map<String,?> configs, boolean isKey)
Deserializerconfigure in interface Deserializer<String>configs - configs in key/value pairsisKey - whether is for key or valuepublic String deserialize(String topic, byte[] data)
Deserializerdeserialize in interface Deserializer<String>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.