toValue method

String toValue()

Implementation

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