Package elki.clustering.biclustering
Interface ChengAndChurch.CellVisitor
-
- Enclosing class:
- ChengAndChurch
protected static interface ChengAndChurch.CellVisitorVisitor pattern for processing cells.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description static intALLDifferent modes of operation.static intNOT_SELECTEDDifferent modes of operation.static intSELECTEDDifferent modes of operation.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanvisit(double val, int row, int col, boolean selrow, boolean selcol)Visit a cell.
-
-
-
Field Detail
-
ALL
static final int ALL
Different modes of operation.- See Also:
- Constant Field Values
-
SELECTED
static final int SELECTED
Different modes of operation.- See Also:
- Constant Field Values
-
NOT_SELECTED
static final int NOT_SELECTED
Different modes of operation.- See Also:
- Constant Field Values
-
-
Method Detail
-
visit
boolean visit(double val, int row, int col, boolean selrow, boolean selcol)Visit a cell.- Parameters:
val- Valuerow- Row Numbercol- Column numberselrow- Boolean, whether row is selectedselcol- Boolean, whether column is selected- Returns:
- Stop flag, return
trueto stop visiting
-
-