Mutable Bound Entry
class MutableBoundEntry<P : Any, C : Any>(container: MutablePersistentDataContainer, key: String, type: PersistentDataType<P, C>) : BoundEntry<P, C> (source)
Represents a mutable binding between a key, its associated type, and a MutablePersistentDataContainer.
This class extends BoundEntry to allow modification of the value in the container associated with the specific key and PersistentDataType.
The MutableBoundEntry facilitates setting and updating the value in the container programmatically via the set method or by delegation.
Author
Fantamomo
Since
3.2-SNAPSHOT
Parameters
P
The primitive data type.
C
The complex data type.
key
The key associated with the value in the container.
type
The type used to serialize/deserialize the value.