Interface FailableIntConsumer<E extends java.lang.Throwable>

  • Type Parameters:
    E - The kind of thrown exception or error.
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface FailableIntConsumer<E extends java.lang.Throwable>
    A functional interface like IntConsumer that declares a Throwable.
    Since:
    3.11
    • Method Detail

      • nop

        static <E extends java.lang.Throwable> FailableIntConsumer<E> nop()
        Returns The NOP singleton.
        Type Parameters:
        E - The kind of thrown exception or error.
        Returns:
        The NOP singleton.
      • accept

        void accept​(int value)
             throws E extends java.lang.Throwable
        Accepts the given arguments.
        Parameters:
        value - the parameter for the consumable to accept
        Throws:
        E - Thrown when the consumer fails.
        E extends java.lang.Throwable