toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case RoutingStrategyType.simple:
      return 'SIMPLE';
    case RoutingStrategyType.terminal:
      return 'TERMINAL';
  }
}