public class MethodCodec extends Object
Constructor and Description |
---|
MethodCodec() |
Modifier and Type | Method and Description |
---|---|
Object |
createObject(Class clazz,
DecodingContext context)
Creates the object during decoding.
|
Object |
encode(Object object,
Class<?> clazz,
List<ITraverseProcessor> processors,
Traverser traverser,
Map<Object,Object> traversed,
boolean clone,
EncodingContext ec)
Encode the object.
|
boolean |
isApplicable(Class clazz)
Tests if the decoder can decode the class.
|
boolean |
isApplicable(Object object,
Class<?> clazz,
boolean clone,
ClassLoader targetcl)
Test if the processor is applicable.
|
public boolean isApplicable(Class clazz)
clazz
- The class.public Object createObject(Class clazz, DecodingContext context)
clazz
- The class of the object.context
- The decoding context.public boolean isApplicable(Object object, Class<?> clazz, boolean clone, ClassLoader targetcl)
object
- The object.targetcl
- If not null, the traverser should make sure that the result object is compatible with the class loader,
e.g. by cloning the object using the class loaded from the target class loader.public Object encode(Object object, Class<?> clazz, List<ITraverseProcessor> processors, Traverser traverser, Map<Object,Object> traversed, boolean clone, EncodingContext ec)
Copyright © 2013. All Rights Reserved.