Package org.assertj.db.output.impl
Interface Output
- All Known Implementing Classes:
OutputType
public interface Output
Interface of the output of a output of assertj-db.
- Since:
- 1.1.0
- Author:
- Régis Pouiller
-
Method Summary
Modifier and TypeMethodDescriptiongetChangeColumnOutput(org.assertj.core.api.WritableAssertionInfo info, String columnName, Value valueAtStartPoint, Value valueAtEndPoint) Returns the output of aColumnof aChange.getChangeOutput(org.assertj.core.api.WritableAssertionInfo info, Change change) Returns the output of aChange.getChangesOutput(org.assertj.core.api.WritableAssertionInfo info, Changes changes) Returns the output ofChanges.getColumnOutput(org.assertj.core.api.WritableAssertionInfo info, Column column) Returns the output of aColumn.getRequestOutput(org.assertj.core.api.WritableAssertionInfo info, Request request) Returns the output of aRequest.getRowOutput(org.assertj.core.api.WritableAssertionInfo info, Row row) Returns the output of aRow.getTableOutput(org.assertj.core.api.WritableAssertionInfo info, Table table) Returns the output of aTable.getValueOutput(org.assertj.core.api.WritableAssertionInfo info, Value value) Returns the output of a value.
-
Method Details
-
getTableOutput
Returns the output of aTable.- Parameters:
info- Writable information about an assertion.table- Table.- Returns:
- The output of a
Table.
-
getRequestOutput
Returns the output of aRequest.- Parameters:
info- Writable information about an assertion.request- Request.- Returns:
- The output of a
Request.
-
getChangesOutput
Returns the output ofChanges.- Parameters:
info- Writable information about an assertion.changes- Changes.- Returns:
- The output of
Changes.
-
getChangeOutput
Returns the output of aChange.- Parameters:
info- Writable information about an assertion.change- Change.- Returns:
- The output of a
Change.
-
getRowOutput
Returns the output of aRow.- Parameters:
info- Writable information about an assertion.row- Row.- Returns:
- The output of a
Row.
-
getColumnOutput
Returns the output of aColumn.- Parameters:
info- Writable information about an assertion.column- Column.- Returns:
- The output of a
Column.
-
getChangeColumnOutput
String getChangeColumnOutput(org.assertj.core.api.WritableAssertionInfo info, String columnName, Value valueAtStartPoint, Value valueAtEndPoint) Returns the output of aColumnof aChange.- Parameters:
info- Writable information about an assertion.columnName- Column name.valueAtStartPoint- Value at start point.valueAtEndPoint- Value at end point.- Returns:
- The output of a
Columnof aChange.
-
getValueOutput
Returns the output of a value.- Parameters:
info- Writable information about an assertion.value- Value.- Returns:
- The output of a value.
-