toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case AppLaunchConfigurationStatus.notConfigured:
      return 'NOT_CONFIGURED';
    case AppLaunchConfigurationStatus.configured:
      return 'CONFIGURED';
  }
}