ValueFlag

enum ValueFlag : Enum<ValueFlag>

Represents flags to supply additional info about values of buffer.

Entries

POSITIVE_INFINITY
Link copied to clipboard
common
POSITIVE_INFINITY(0b0000_1000)
Reports the value is positive infinity
NEGATIVE_INFINITY
Link copied to clipboard
common
NEGATIVE_INFINITY(0b0000_0100)
Reports the value is negative infinity.
MISSING
Link copied to clipboard
common
MISSING(0b0000_0010)
Reports the value doesn't present in the buffer (when the type of value doesn't support null).
NAN
Link copied to clipboard
common
NAN(0b0000_0001)
Reports the value is NaN.

Properties

mask
Link copied to clipboard
common
val mask: Byte
bit mask value of this flag.
name
Link copied to clipboard
common
val name: String
ordinal
Link copied to clipboard
common
val ordinal: Int

Sources

common source
Link copied to clipboard