|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.math3.linear.DefaultRealMatrixPreservingVisitor
public class DefaultRealMatrixPreservingVisitor
Default implementation of the RealMatrixPreservingVisitor
interface.
This class is a convenience to create custom visitors without defining all methods. This class provides default implementations that do nothing.
Constructor Summary | |
---|---|
DefaultRealMatrixPreservingVisitor()
|
Method Summary | |
---|---|
double |
end()
End visiting a matrix. |
void |
start(int rows,
int columns,
int startRow,
int endRow,
int startColumn,
int endColumn)
Start visiting a matrix. |
void |
visit(int row,
int column,
double value)
Visit one matrix entry. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DefaultRealMatrixPreservingVisitor()
Method Detail |
---|
public void start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn)
This method is called once before any entry of the matrix is visited.
start
in interface RealMatrixPreservingVisitor
rows
- number of rows of the matrixcolumns
- number of columns of the matrixstartRow
- Initial row indexendRow
- Final row index (inclusive)startColumn
- Initial column indexendColumn
- Final column index (inclusive)public void visit(int row, int column, double value)
visit
in interface RealMatrixPreservingVisitor
row
- row index of the entrycolumn
- column index of the entryvalue
- current value of the entrypublic double end()
This method is called once after all entries of the matrix have been visited.
end
in interface RealMatrixPreservingVisitor
walkInXxxOrder
must return
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |