Package org.jboss.weld.util
Interface Consumer<T>
-
- Type Parameters:
T-
public interface Consumer<T>Backport of JDK 8 consumer interface.- Author:
- Martin Kouba
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(T input)Performs operation on the given argument.
-
-
-
Method Detail
-
accept
void accept(T input)
Performs operation on the given argument.- Parameters:
input-
-
-