toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case StateMachineType.standard:
      return 'STANDARD';
    case StateMachineType.express:
      return 'EXPRESS';
  }
}