Uses of Class
com.redwood.agent.api.rtx.RTXRow
-
Packages that use RTXRow Package Description com.redwood.agent.api.rtx Redwood Table XML API. -
-
Uses of RTXRow in com.redwood.agent.api.rtx
Methods in com.redwood.agent.api.rtx that return RTXRow Modifier and Type Method Description RTXRow
RTXRow. copy(RTXMetadata newMetadata)
default RTXRow
RTXConsumer. newRow()
Create an empty row (you will need to add it later).RTXRow
RTXProducer. next()
RTXRow
RTXReader. next()
Methods in com.redwood.agent.api.rtx that return types with arguments of type RTXRow Modifier and Type Method Description Iterator<RTXRow>
RTXProducer. iterator()
Iterator<RTXRow>
RTXProducer. iterator(String... cols)
Return an iterator with a subset of columns.Iterator<RTXRow>
RTXReader. iterator()
Iterator<RTXRow>
RTXReader. iterator(String... cols)
Iterable<RTXRow>
RTXProducer. rows()
Return anIterable
for rows from the current position on, this can only be used to retrieve a single iterator.Iterable<RTXRow>
RTXProducer. rows(String... cols)
Iterable<RTXRow>
RTXReader. rows()
Iterable<RTXRow>
RTXReader. rows(String... cols)
Methods in com.redwood.agent.api.rtx with parameters of type RTXRow Modifier and Type Method Description List<RTXColumn>
RTXRow. addAllMatching(RTXRow other)
Add all matching columns from the other row to this row.void
RTXConsumer. addRow(RTXRow row)
Adds arow
void
RTXWriter. addRow(RTXRow row)
T
RTXRowRELScript. call(RTXRow row)
Call the script.T
RTXRowRELScript. call(RTXRow row, Map<String,Object> parameters)
Call the script.
-