toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ConfigurationState.active:
      return 'ACTIVE';
    case ConfigurationState.deleting:
      return 'DELETING';
    case ConfigurationState.deleteFailed:
      return 'DELETE_FAILED';
  }
}