- java.lang.Object
-
- org.redkale.convert.AnyEncoder<W,T>
-
- 类型参数:
W
- WriterT
- 序列化的泛型类型
- 所有已实现的接口:
Encodeable<W,T>
public final class AnyEncoder<W extends Writer,T> extends Object implements Encodeable<W,T>
对不明类型的对象进行序列化; PROTOBUF序列化时将对象的类名写入Writer,JSON则不写入。详情见: https://redkale.org
- 作者:
- zhangjx
-
-
方法详细资料
-
convertTo
public void convertTo(W out, T value)
从接口复制的说明:Encodeable
序列化操作- 指定者:
convertTo
在接口中Encodeable<W extends Writer,T>
- 参数:
out
- Writervalue
- 对象
-
getType
public Type getType()
从接口复制的说明:Encodeable
泛型映射接口- 指定者:
getType
在接口中Encodeable<W extends Writer,T>
- 返回:
- 返回序列化对象类的数据类型
-
specifyable
public boolean specifyable()
- 指定者:
specifyable
在接口中Encodeable<W extends Writer,T>
-
-