toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ResolverEndpointDirection.inbound:
      return 'INBOUND';
    case ResolverEndpointDirection.outbound:
      return 'OUTBOUND';
  }
}