Value
Represents a sealed class Value that can hold different types of values.
The sealed class Value has the following subclasses:
StringValuefor storing aStringvalue.LongValuefor storing aLongvalue.DoubleValuefor storing aDoublevalue.BooleanValuefor storing aBooleanvalue.DateValuefor storing aLocalDatevalue.TimeValuefor storing aLocalTimevalue.DateTimeValuefor storing aLocalDateTimevalue.MonthDayValuefor storing aMonthDayvalue.YearValuefor storing anIntvalue.UtcDateTimeValuefor storing anInstantvalue.
Each subclass extends the Value class and overrides the value property with the respective type.
Parameters
V
the type of the value stored by the class