///
/// RepeatMode.swift
/// This file was generated by nitrogen. DO NOT MODIFY THIS FILE.
/// https://github.com/mrousavy/nitro
/// Copyright © Marc Rousavy @ Margelo
///

/**
 * Represents the JS union `RepeatMode`, backed by a C++ enum.
 */
public typealias RepeatMode = margelo.nitro.aviation.RepeatMode

public extension RepeatMode {
  /**
   * Get a RepeatMode for the given String value, or
   * return `nil` if the given value was invalid/unknown.
   */
  init?(fromString string: String) {
    switch string {
      case "off":
        self = .off
      case "one":
        self = .one
      case "all":
        self = .all
      default:
        return nil
    }
  }

  /**
   * Get the String value this RepeatMode represents.
   */
  var stringValue: String {
    switch self {
      case .off:
        return "off"
      case .one:
        return "one"
      case .all:
        return "all"
    }
  }
}
