Interface Node<T>
-
- Type Parameters:
T
- the actual type
- 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 Node<T>
A node in a request/response message.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
verify(T actual)
Verifies the actual.
-
-
-
Method Detail
-
verify
void verify(T actual)
Verifies the actual.- Parameters:
actual
- the actual- Since:
- 1.0
-
-