toMovReference method
Implementation
MovReference toMovReference() {
switch (this) {
case 'SELF_CONTAINED':
return MovReference.selfContained;
case 'EXTERNAL':
return MovReference.external;
}
throw Exception('$this is not known in enum MovReference');
}