Interface PrimitiveLongVisitor<E extends java.lang.Exception>


  • public interface PrimitiveLongVisitor<E extends java.lang.Exception>
    • Method Detail

      • visited

        boolean visited​(long value)
                 throws E extends java.lang.Exception
        Visit the given entry.
        Parameters:
        value - A distinct value from the set.
        Returns:
        'true' to signal that the iteration should be stopped, 'false' to signal that the iteration should continue if there are more entries to look at.
        Throws:
        E - any thrown exception of type 'E' will bubble up through the 'visit' method.
        E extends java.lang.Exception