BasicValue

abstract class BasicValue<T> : Value<T>

Class to mark a Value as basic value. BasicValues are being used in StructuredValues. The StructuredValue itself is not a BasicValue to prevent recursive nesting.

Inheritors

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
abstract operator override fun equals(other: Any?): Boolean
Link copied to clipboard
abstract fun get(): T
Link copied to clipboard
abstract override fun hashCode(): Int
Link copied to clipboard
abstract fun isEmpty(): Boolean
Link copied to clipboard