toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case StackSetStatus.active:
      return 'ACTIVE';
    case StackSetStatus.deleted:
      return 'DELETED';
  }
}