UniqueKeyTransformation Enum
Namespace: Hazelcast.Models
Assembly: Hazelcast.Net.dll
Defines transformations which can be applied to UniqueKey values.
public enum UniqueKeyTransformation
Fields
Long | The unique key value is interpreted as a whole integer value of byte, short, int or long type. The extracted value is upcasted to long (if necessary) and unique non-negative ID is assigned to every distinct value. |
Object | The unique key value is interpreted as an object value. Non-negative unique ID is assigned to every distinct object value. |
Raw | The unique key value is interpreted as a whole integer value of byte, short, int or long type. The extracted value is upcasted to long (if necessary) and the resulting value is used directly as an ID. |