Interface Action<T>
-
- Type Parameters:
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 Action<T>
This is the functional interface which is designed to perform steps that do something but do not return any value.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
performAction(T t)
-
-
-
Method Detail
-
performAction
void performAction(T t)
-
-