Package com.rs.seagull.emulator.api
Interface Table.RowVisitor
-
- Enclosing interface:
- Table
public static interface Table.RowVisitor
A RowVisitor is called for each row. See visitRows().
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
visit(Table.Row row)
Called for each row.
-
-
-
Method Detail
-
visit
boolean visit(Table.Row row)
Called for each row. Return true if the visitRows should continue, false to stop the visiting.- Parameters:
row
- the row being visited- Returns:
- true if the visiting should continue, false to stop it.
-
-