类 DeserializingConverter

java.lang.Object
cn.taketoday.core.serializer.support.DeserializingConverter
所有已实现的接口:
Converter<byte[],Object>

public class DeserializingConverter extends Object implements Converter<byte[],Object>
A Converter that delegates to a Deserializer to convert data in a byte array to an object.
从以下版本开始:
4.0
作者:
Gary Russell, Mark Fisher, Juergen Hoeller
  • 构造器详细资料

  • 方法详细资料

    • convert

      public Object convert(byte[] source)
      从接口复制的说明: Converter
      Convert the source object of type S to target type T.
      指定者:
      convert 在接口中 Converter<byte[],Object>
      参数:
      source - the source object to convert, which must be an instance of S (never null)
      返回:
      the converted object, which must be an instance of T (potentially null)