-
- All Superinterfaces:
DocumentContext,GraphContext
- All Known Subinterfaces:
MutableDetailTable
public interface DetailTable extends GraphContext, DocumentContext
A Context with a table of values- Author:
- Don Mendelson
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceDetailTable.TableRow
-
Field Summary
-
Fields inherited from interface io.fixprotocol.md.event.DocumentContext
UNKNOWN_POSITION
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<? extends TableColumn>getTableColumns()Iterable<? extends DetailTable.TableRow>rows()Supplies a Iterable of row values-
Methods inherited from interface io.fixprotocol.md.event.DocumentContext
getCharPositionInLine, getLine
-
Methods inherited from interface io.fixprotocol.md.event.GraphContext
getParent
-
-
-
-
Method Detail
-
getTableColumns
List<? extends TableColumn> getTableColumns()
- Returns:
- an List of TableColumn that describes this table
-
rows
Iterable<? extends DetailTable.TableRow> rows()
Supplies a Iterable of row values- Returns:
- a Iterable of TableRow
-
-