-
- 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)CgetValue(DataRow<?> row)abstract Stringname()abstract ColumnReference<C>rename(String newName)ColumnPathpath()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)
-
-
-
-