toObjectLockRetentionMode method
Implementation
ObjectLockRetentionMode toObjectLockRetentionMode() {
switch (this) {
case 'GOVERNANCE':
return ObjectLockRetentionMode.governance;
case 'COMPLIANCE':
return ObjectLockRetentionMode.compliance;
}
throw Exception('$this is not known in enum ObjectLockRetentionMode');
}