-
- All Implemented Interfaces:
-
org.jetbrains.kotlinx.dataframe.columns.ColumnSet
,org.jetbrains.kotlinx.dataframe.columns.SingleColumn
public interface ColumnReference<C extends Object> implements SingleColumn<C>
Column with type and name/path
-
-
Method Summary
Modifier and Type Method Description ColumnReference<C>
getValue(Object thisRef, KProperty<?> property)
C
getValue(DataRow<?> row)
abstract String
name()
abstract ColumnReference<C>
rename(String newName)
ColumnPath
path()
ColumnWithPath<C>
resolveSingle(ColumnResolutionContext context)
-
-
Method Detail
-
getValue
ColumnReference<C> getValue(Object thisRef, KProperty<?> property)
-
rename
abstract ColumnReference<C> rename(String newName)
-
path
ColumnPath path()
-
resolveSingle
ColumnWithPath<C> resolveSingle(ColumnResolutionContext context)
-
-
-
-