toEndPointType method

EndPointType toEndPointType()

Implementation

EndPointType toEndPointType() {
  switch (this) {
    case 'KAFKA_BOOTSTRAP_SERVERS':
      return EndPointType.kafkaBootstrapServers;
  }
  throw Exception('$this is not known in enum EndPointType');
}