toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case PerformanceMode.generalPurpose:
      return 'generalPurpose';
    case PerformanceMode.maxIO:
      return 'maxIO';
  }
}