alchemist
alchemist
/
it.unibo.alchemist.expressions.interfaces
/
ITreeNode
ITree
Node
interface
ITreeNode
<
T
>
:
Serializable
Content copied to clipboard
Represents an interface for node of the Tree class.
Functions
Parameters
Inheritors
Parameters
<T>
concentration type
Functions
get
Data
Link copied to clipboard
abstract
fun
getData
(
)
:
T
Content copied to clipboard
get
Left
Child
Link copied to clipboard
abstract
fun
getLeftChild
(
)
:
ITreeNode
<
out
Any
>
Content copied to clipboard
get
Number
Of
Children
Link copied to clipboard
abstract
fun
getNumberOfChildren
(
)
:
Int
Content copied to clipboard
get
Right
Child
Link copied to clipboard
abstract
fun
getRightChild
(
)
:
ITreeNode
<
out
Any
>
Content copied to clipboard
get
Type
Link copied to clipboard
abstract
fun
getType
(
)
:
Type
Content copied to clipboard
get
Value
Link copied to clipboard
abstract
fun
getValue
(
mp
:
Map
<
HashString
,
ITreeNode
<
out
Any
>
>
)
:
T
Content copied to clipboard
to
Hash
String
Link copied to clipboard
abstract
fun
toHashString
(
)
:
HashString
Content copied to clipboard
Similar to toString(), but returns a HashString.
to
String
Link copied to clipboard
abstract
fun
toString
(
)
:
String
Content copied to clipboard
Inheritors
ATreeNode
Link copied to clipboard