Interface ITraverseProcessor

    • Method Detail

      • isApplicable

        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.
        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

        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,
                                 IStringConverter converter,
                                 Traverser.MODE mode,
                                 java.lang.ClassLoader targetcl,
                                 java.lang.Object context)
        Process an object.
        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.