net.sf.staccatocommons.defs
Interface Applicable3<A,B,C,D>
- Type Parameters:
A - first argument typeB - second argument typeC - third argument typeD - return type
- All Known Subinterfaces:
- Function3<A,B,C,D>
@Applicative
public interface Applicable3<A,B,C,D>
Applicable3s are transformations that take three arguments and have a
return value, by implementing an apply(Object, Object, Object)
method
- Author:
- flbulgarelli
- See Also:
Recomendations for implementing
|
Method Summary |
D |
apply(A arg0,
B arg1,
C arg2)
Performs a transformation on the given element, and returns its result. |
apply
D apply(A arg0,
B arg1,
C arg2)
- Performs a transformation on the given element, and returns its result.
- Parameters:
arg0 - the first transformation argumentarg1 - the second transformation argumentarg2 - the third transformation argument
- Returns:
- the transformation result