Class ListProcessor

    • Constructor Summary

      Constructors 
      Constructor Description
      ListProcessor()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Object getReturnObject​(java.lang.Object object, java.lang.Class<?> clazz, java.lang.Object context)
      Get the return object.
      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
    • Constructor Detail

      • ListProcessor

        public ListProcessor()
    • 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.
      • getReturnObject

        public java.lang.Object getReturnObject​(java.lang.Object object,
                                                java.lang.Class<?> clazz,
                                                java.lang.Object context)
        Get the return object.