toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case StabilityStatus.steadyState:
      return 'STEADY_STATE';
    case StabilityStatus.stabilizing:
      return 'STABILIZING';
  }
}