Uses of Class
com.redwood.scheduler.api.rtx.RTXColumn
-
Packages that use RTXColumn Package Description com.redwood.scheduler.api.rtx Redwood Table XML API. -
-
Uses of RTXColumn in com.redwood.scheduler.api.rtx
Methods in com.redwood.scheduler.api.rtx that return RTXColumn Modifier and Type Method Description <T> RTXColumn<T>
RTXMetadata. createColumn(String columnName, Class<T> columnClass)
Create, add and return a new column with the specified name and type, the column will be added to the end of this metadata.RTXColumn
RTXMetadata. getColumnByIndex(int columnIndex)
Get a column by index (0 based).RTXColumn
RTXMetadata. getColumnByName(String columnName)
Get a column by name (case-insensitive).Methods in com.redwood.scheduler.api.rtx that return types with arguments of type RTXColumn Modifier and Type Method Description List<RTXColumn>
RTXRow. addAllMatching(RTXRow other)
Add all matching columns from the other row to this row.Map<String,RTXColumn>
RTXMetadata. getColumnMap()
Get a map of columns.List<RTXColumn>
RTXMetadata. getColumns()
Get a list of columns.Methods in com.redwood.scheduler.api.rtx with parameters of type RTXColumn Modifier and Type Method Description void
RTXConsumer. addColumn(RTXColumn column)
Add a new column with the name and type of an existing column, the column will be added to the end of this metadata (i.e.void
RTXMetadata. addColumn(RTXColumn column)
Add a new column with the name and type of an existing column, the column will be added to the end of this metadata (ie.void
RTXWriter. addColumn(RTXColumn column)
void
RTXColumn. assertColumnsCompatible(RTXColumn anotherColumn)
<T> T
RTXRow. get(RTXColumn<T> column)
Get the value of the specified column as an appropriate object.BigDecimal
RTXRow. getBigDecimal(RTXColumn column)
Get the value of the specified column as a BigDecimal.String
RTXRow. getCanonicalStringValue(RTXColumn column)
Get the value as in canonical form (as it would be written to a file).DateTimeZone
RTXRow. getDate(RTXColumn column)
Get the value of the specified column as a DateTimeZone.Object
RTXRow. getObject(RTXColumn column)
Get the value of the specified column as an appropriate object.String
RTXRow. getString(RTXColumn column)
Get the value of the specified column as a String.void
RTXRow. set(RTXColumn column, Object columnValue)
Set the column to the value.Method parameters in com.redwood.scheduler.api.rtx with type arguments of type RTXColumn Modifier and Type Method Description void
RTXConsumer. addColumns(Collection<RTXColumn> newColumns)
Add new columns based on the input columns, the columns will be added in the order that they occur in the list, to the end of this metadata (i.e.void
RTXMetadata. addColumns(Collection<RTXColumn> newColumns)
Add a new columns based on the input columns, the columns will be added in the order that they occur in the list, to the end of this metadata (ie.void
RTXWriter. addColumns(Collection<RTXColumn> newColumns)
-