org.axonframework.serializer.converters
Class ByteArrayToStringConverter
java.lang.Object
org.axonframework.serializer.AbstractContentTypeConverter<byte[],String>
org.axonframework.serializer.converters.ByteArrayToStringConverter
- All Implemented Interfaces:
- ContentTypeConverter<byte[],String>
public class ByteArrayToStringConverter
- extends AbstractContentTypeConverter<byte[],String>
ContentTypeConverter that converts byte arrays into Strings. Conversion is done using the UTF-8 character set.
- Since:
- 2.0
- Author:
- Allard Buijze
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ByteArrayToStringConverter
public ByteArrayToStringConverter()
expectedSourceType
public Class<byte[]> expectedSourceType()
- Description copied from interface:
ContentTypeConverter
- The expected type of input data.
- Returns:
- the expected data format in IntermediateRepresentation
targetType
public Class<String> targetType()
- Description copied from interface:
ContentTypeConverter
- The returned type of IntermediateRepresentation
- Returns:
- the output data format in IntermediateRepresentation
convert
public String convert(byte[] original)
- Description copied from interface:
ContentTypeConverter
- Converts the given object into another. Typically, these values are contained by a
SerializedObject
instance.
- Parameters:
original
- the value to convert
- Returns:
- the converted value
Copyright © 2010-2016. All Rights Reserved.