toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case StackSetDriftStatus.drifted:
      return 'DRIFTED';
    case StackSetDriftStatus.inSync:
      return 'IN_SYNC';
    case StackSetDriftStatus.notChecked:
      return 'NOT_CHECKED';
  }
}