|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ObjectObjectProcedure<K,V>
Interface that represents a procedure object: a procedure that takes two arguments and returns a 'continue' flag.
Method Summary | |
---|---|
boolean |
apply(K key,
V value)
Applies a procedure to an argument. |
Method Detail |
---|
boolean apply(K key, V value)
Example: forEach() methods often use procedure objects. To signal to a forEach() method whether iteration should continue normally or terminate (because for example a matching element has been found), a procedure can return false to indicate termination and true to indicate continuation.
key
- key value passed to the procedurevalue
- value value passed to the procedure.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |