toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ReturnValue.none:
      return 'NONE';
    case ReturnValue.allOld:
      return 'ALL_OLD';
    case ReturnValue.updatedOld:
      return 'UPDATED_OLD';
    case ReturnValue.allNew:
      return 'ALL_NEW';
    case ReturnValue.updatedNew:
      return 'UPDATED_NEW';
  }
}