Enum EditOperation
Enumerates the types of edit operations which are identified by the edit distance computation.
Namespace: Sdl.LanguagePlatform.Core.EditDistance
Assembly: Sdl.LanguagePlatform.Core.dll
Syntax
public enum EditOperation
Fields
| Name | Description |
|---|---|
| Change | Indicates that the source item was changed into another target item. |
| Delete | Indicates that the item was deleted and does not occur in the target. |
| Identity | Indicates that the source and target items are identical. |
| Insert | Indicates that the item did not exist in the source and was inserted into the target. |
| Move | Indicates that the source item is identical, but was moved to a different position within the target. |
| Undefined | Indicates that no operation has been identified yet |