public class ExcludeProcessor extends java.lang.Object implements ITraverseProcessor
Modifier and Type | Field and Description |
---|---|
protected static java.util.Set<java.lang.Class<?>> |
excluded
The static excluded types.
|
protected static java.lang.Class<?>[] |
excludedsupertypes |
Constructor and Description |
---|
ExcludeProcessor() |
Modifier and Type | Method and Description |
---|---|
boolean |
isApplicable(java.lang.Object object,
java.lang.reflect.Type type,
boolean clone,
java.lang.ClassLoader targetcl)
Test if the processor is applicable.
|
java.lang.Object |
process(java.lang.Object object,
java.lang.reflect.Type type,
java.util.List<ITraverseProcessor> processors,
Traverser traverser,
java.util.Map<java.lang.Object,java.lang.Object> traversed,
boolean clone,
java.lang.ClassLoader targetcl,
java.lang.Object context)
Process an object.
|
protected static final java.util.Set<java.lang.Class<?>> excluded
protected static final java.lang.Class<?>[] excludedsupertypes
public boolean isApplicable(java.lang.Object object, java.lang.reflect.Type type, boolean clone, java.lang.ClassLoader targetcl)
isApplicable
in interface ITraverseProcessor
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 java.lang.Object process(java.lang.Object object, java.lang.reflect.Type type, java.util.List<ITraverseProcessor> processors, Traverser traverser, java.util.Map<java.lang.Object,java.lang.Object> traversed, boolean clone, java.lang.ClassLoader targetcl, java.lang.Object context)
process
in interface ITraverseProcessor
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.