Interface ThrowingConsumer<T>
-
- 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 ThrowingConsumer<T>
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidaccept(T var1)default ThrowingConsumer<T>andThen(ThrowingConsumer<? super T> after)static <T> ThrowingConsumer<T>identity()
-
-
-
Method Detail
-
identity
static <T> ThrowingConsumer<T> identity()
-
andThen
default ThrowingConsumer<T> andThen(ThrowingConsumer<? super T> after)
-
-