toValue method
Implementation
String toValue() {
switch (this) {
case OperationType.insert:
return 'INSERT';
case OperationType.modify:
return 'MODIFY';
case OperationType.remove:
return 'REMOVE';
}
}
String toValue() {
switch (this) {
case OperationType.insert:
return 'INSERT';
case OperationType.modify:
return 'MODIFY';
case OperationType.remove:
return 'REMOVE';
}
}