DataTreeItem

sealed class DataTreeItem<out T : Any>

Types

Leaf
Link copied to clipboard
common
class Leaf<out T : Any>(data: Data<T>) : DataTreeItem<T>
Node
Link copied to clipboard
common
class Node<out T : Any>(tree: DataTree<T>) : DataTreeItem<T>

Inheritors

DataTreeItem
Link copied to clipboard
DataTreeItem
Link copied to clipboard

Extensions

data
Link copied to clipboard
common
val <T : Any> DataTreeItem<T>?.data: Data<T>?
tree
Link copied to clipboard
common
val <T : Any> DataTreeItem<T>?.tree: DataTree<T>?
type
Link copied to clipboard
common
val <T : Any> DataTreeItem<T>.type: KType