Class FilterProcessor

  • All Implemented Interfaces:
    ITraverseProcessor

    public class FilterProcessor
    extends java.lang.Object
    implements ITraverseProcessor
    Filter processor for directly returning specific objects as is. If filter return true, the processors applies and returns the object as is.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected IFilter filter
      The filter.
    • Constructor Summary

      Constructors 
      Constructor Description
      FilterProcessor​(IFilter filter)
      Create a new filter processor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean isApplicable​(java.lang.Object object, java.lang.reflect.Type type, java.lang.ClassLoader targetcl, java.lang.Object context)
      Test if the processor is applicable.
      java.lang.Object process​(java.lang.Object object, java.lang.reflect.Type type, Traverser traverser, java.util.List<ITraverseProcessor> conversionprocessors, java.util.List<ITraverseProcessor> processors, Traverser.MODE mode, java.lang.ClassLoader targetcl, java.lang.Object context)
      Process an object.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • filter

        protected IFilter filter
        The filter.
    • Constructor Detail

      • FilterProcessor

        public FilterProcessor​(IFilter filter)
        Create a new filter processor.
    • Method Detail

      • isApplicable

        public boolean isApplicable​(java.lang.Object object,
                                    java.lang.reflect.Type type,
                                    java.lang.ClassLoader targetcl,
                                    java.lang.Object context)
        Test if the processor is applicable.
        Specified by:
        isApplicable in interface ITraverseProcessor
        Parameters:
        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.
        Returns:
        True, if is applicable.
      • process

        public java.lang.Object process​(java.lang.Object object,
                                        java.lang.reflect.Type type,
                                        Traverser traverser,
                                        java.util.List<ITraverseProcessor> conversionprocessors,
                                        java.util.List<ITraverseProcessor> processors,
                                        Traverser.MODE mode,
                                        java.lang.ClassLoader targetcl,
                                        java.lang.Object context)
        Process an object.
        Specified by:
        process in interface ITraverseProcessor
        Parameters:
        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.
        Returns:
        The processed object.