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

/**
 * Represents the JS enum `DataBindMode`, backed by a C++ enum.
 */
public typealias DataBindMode = margelo.nitro.rive.DataBindMode

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

  /**
   * Get the String value this DataBindMode represents.
   */
  var stringValue: String {
    switch self {
      case .auto:
        return "Auto"
      case .none:
        return "None"
    }
  }
}
