toReplicationEndpointTypeValue method

ReplicationEndpointTypeValue toReplicationEndpointTypeValue()

Implementation

ReplicationEndpointTypeValue toReplicationEndpointTypeValue() {
  switch (this) {
    case 'source':
      return ReplicationEndpointTypeValue.source;
    case 'target':
      return ReplicationEndpointTypeValue.target;
  }
  throw Exception('$this is not known in enum ReplicationEndpointTypeValue');
}