DatapointType

enum DatapointType : ProtocolMessageEnum
Specifies the types an object may use when defining special objects. These types govern how an object is treated,
listed, and adapted throughout its lifecycle.
Protobuf enum elide.model.DatapointType

Entries

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard
val EVENT_VALUE: Int = 2
The datamodel represents an event type.
EVENT = 2;
Link copied to clipboard
val HASH_VALUE: Int = 5
The datamodel represents a hash pre-image.
HASH = 5;
Link copied to clipboard
Specifies that this datapoint type is a record key.
OBJECT_KEY = 1;
Link copied to clipboard
val OBJECT_VALUE: Int = 0
The datamodel represents an object record.
OBJECT = 0;
Link copied to clipboard
val TABLE_VALUE: Int = 3
The datamodel represents a table.
TABLE = 3;
Link copied to clipboard
val WIRE_VALUE: Int = 4
The datamodel represents a wire object.
WIRE = 4;

Functions

Link copied to clipboard
open fun forNumber(value: Int): DatapointType
Link copied to clipboard
fun getDescriptor(): Descriptors.EnumDescriptor
Link copied to clipboard
fun getDescriptorForType(): Descriptors.EnumDescriptor
Link copied to clipboard
fun getNumber(): Int
Link copied to clipboard
fun getValueDescriptor(): Descriptors.EnumValueDescriptor
Link copied to clipboard
open fun internalGetValueMap(): Internal.EnumLiteMap<DatapointType>
Link copied to clipboard
open fun valueOf(desc: Descriptors.EnumValueDescriptor): DatapointType
open fun valueOf(value: Int): DatapointType

open fun valueOf(name: String): DatapointType

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.