Class FilterIteration<E,​X extends Exception>

    • Constructor Detail

      • FilterIteration

        protected FilterIteration​(Iteration<? extends E,​? extends X> iter)
        Parameters:
        iter -
    • Method Detail

      • accept

        protected abstract boolean accept​(E object)
                                   throws X extends Exception
        Tests whether or not the specified object should be returned by this Iteration. All objects from the wrapped Iteration pass through this method in the same order as they are coming from the wrapped Iteration.
        Parameters:
        object - The object to be tested.
        Returns:
        true if the object should be returned, false otherwise.
        Throws:
        X
        X extends Exception