Uses of Interface
com.redwood.scheduler.api.model.TableValue
-
Packages that use TableValue Package Description com.redwood.scheduler.api.model Scheduler API - Modelcom.redwood.scheduler.api.model.compatibility_14 -
-
Uses of TableValue in com.redwood.scheduler.api.model
Fields in com.redwood.scheduler.api.model with type parameters of type TableValue Modifier and Type Field Description static QueryObjectType<TableValue>
TableValue. TYPE
Type that can be used inSchedulerSession.executeObjectQuery(QueryObjectType, String, Object...)
.Methods in com.redwood.scheduler.api.model that return TableValue Modifier and Type Method Description TableValue
Table. createTableValue()
Create a newTableValue
linked to this object.TableValue
Table. createTableValue(String key, TableDefinitionColumn tableDefinitionColumn)
Creates a TableValue for the given key and TableDefinitionColumn.TableValue
Table. getTableValueBySearchKeySearchColumnName(String searchKey, String searchColumnName)
Get the TableValue by SearchKeyColumn.TableValue
SchedulerSession. getTableValueByUniqueId(Long uniqueId)
Get theTableValue
by UniqueId.Methods in com.redwood.scheduler.api.model that return types with arguments of type TableValue Modifier and Type Method Description RWIterable<TableValue>
Table. getTableRowByKey(String key)
Return an iterator with all the values in the row.RWIterable<TableValue>
Table. getTableValues()
Get anRWIterable
over a collection ofTableValues
, the collection will be ordered by Key DisplayOrder.Methods in com.redwood.scheduler.api.model with parameters of type TableValue Modifier and Type Method Description void
AbstractConcreteObjectCallback. handle(TableValue theTableValue)
void
ConcreteObjectCallback. handle(TableValue theTableValue)
-
Uses of TableValue in com.redwood.scheduler.api.model.compatibility_14
Methods in com.redwood.scheduler.api.model.compatibility_14 that return types with arguments of type TableValue Modifier and Type Method Description Iterator<TableValue>
TableComp. getTableRowByKey(String key)
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useTable.getTableRowByKey(String key)
instead.Iterator<TableValue>
TableComp. getTableValues()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useTable.getTableValues()
instead.
-