Package gnu.trove.procedure
Interface TIntObjectProcedure<T>
-
public interface TIntObjectProcedure<T>
Interface for procedures that take two parameters of type int and Object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
execute(int a, T b)
Executes this procedure.
-
-
-
Method Detail
-
execute
boolean execute(int a, T b)
Executes this procedure. A false return value indicates that the application executing this procedure should not invoke this procedure again.- Parameters:
a
- aint
valueb
- anObject
value- Returns:
- true if additional invocations of the procedure are allowed.
-
-