toUseCaseType method

UseCaseType toUseCaseType()

Implementation

UseCaseType toUseCaseType() {
  switch (this) {
    case 'RULES_EVALUATION':
      return UseCaseType.rulesEvaluation;
  }
  throw Exception('$this is not known in enum UseCaseType');
}