toValue method
Implementation
String toValue() {
switch (this) {
case ChangeTypeEnum.a:
return 'A';
case ChangeTypeEnum.m:
return 'M';
case ChangeTypeEnum.d:
return 'D';
}
}
String toValue() {
switch (this) {
case ChangeTypeEnum.a:
return 'A';
case ChangeTypeEnum.m:
return 'M';
case ChangeTypeEnum.d:
return 'D';
}
}