toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case MigrationTypeValue.fullLoad:
      return 'full-load';
    case MigrationTypeValue.cdc:
      return 'cdc';
    case MigrationTypeValue.fullLoadAndCdc:
      return 'full-load-and-cdc';
  }
}