Package org.onlab.util
Interface TriConsumer<U,V,W>
-
- Type Parameters:
U
- type of first argumentV
- type of second argumentW
- type of third argument
public interface TriConsumer<U,V,W>
A consumer that accepts three arguments.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
accept(U arg1, V arg2, W arg3)
Applies the given arguments to the function.
-