-
- All Implemented Interfaces:
-
org.jetbrains.kotlinx.dataframe.columns.ColumnReference
,org.jetbrains.kotlinx.dataframe.columns.ColumnSet
,org.jetbrains.kotlinx.dataframe.columns.SingleColumn
public interface ColumnAccessor<T extends Object> implements ColumnReference<T>
-
-
Method Summary
Modifier and Type Method Description ColumnAccessor<T>
getValue(Object thisRef, KProperty<?> property)
abstract <C extends Any> ColumnAccessor<C>
get(ColumnReference<C> column)
abstract ColumnAccessor<T>
rename(String newName)
-
Methods inherited from class org.jetbrains.kotlinx.dataframe.columns.ColumnAccessor
getValue, name, path, resolveSingle
-
Methods inherited from class org.jetbrains.kotlinx.dataframe.columns.ColumnReference
resolve
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getValue
ColumnAccessor<T> getValue(Object thisRef, KProperty<?> property)
-
get
abstract <C extends Any> ColumnAccessor<C> get(ColumnReference<C> column)
-
rename
abstract ColumnAccessor<T> rename(String newName)
-
-
-
-