IdOperation
enum IdOperation : Enum<IdOperation>
Defines what happened to an ObjectId during execution
BCS
The BCS serialized form for this type is defined by the following ABNF:
id-operation = id-operation-none
=/ id-operation-created
=/ id-operation-deleted
id-operation-none = %d00
id-operation-created = %d01
id-operation-deleted = %d02
Entries
| NONE | NONE |
| CREATED | CREATED |
| DELETED | DELETED |
Properties
| Name | Summary |
|---|---|
| entries | val entries: EnumEntries<IdOperation> Returns a representation of an immutable list of all enum entries, in the order they're declared. |
| name | val name: String |
| ordinal | val ordinal: Int |
| value | val value: UByte |
Functions
| Name | Summary |
|---|---|
| valueOf | fun valueOf(value: String): IdOperation 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.) |
| values | fun values(): Array<IdOperation> Returns an array containing the constants of this enum type, in the order they're declared. |
CREATED
Properties
| Name | Summary |
|---|---|
| name | val name: String |
| ordinal | val ordinal: Int |
| value | val value: UByte |
DELETED
Properties
| Name | Summary |
|---|---|
| name | val name: String |
| ordinal | val ordinal: Int |
| value | val value: UByte |
NONE
Properties
| Name | Summary |
|---|---|
| name | val name: String |
| ordinal | val ordinal: Int |
| value | val value: UByte |