toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case KafkaVersionStatus.active:
      return 'ACTIVE';
    case KafkaVersionStatus.deprecated:
      return 'DEPRECATED';
  }
}