Interface Processor<T>

  • Type Parameters:
    T -

    public interface Processor<T>
    This class was copied from com.intellij.util.Processor This is different from Consumer class as it can stop processing
    • Method Detail

      • process

        boolean process​(T t)
        Parameters:
        t - consequently takes value of each element of the set this processor is passed to for processing.
        Returns:
        true to continue processing or false to stop.