All Downloads are FREE. Search and download functionalities are using the official Maven repository.

reactify.bind.BindSet.scala Maven / Gradle / Ivy

package reactify.bind

sealed trait BindSet

/**
  * BindSet defines how a binding should be applied when first defined
  */
object BindSet {
  /**
    * The left value is assigned to the right
    */
  case object LeftToRight extends BindSet

  /**
    * The right value is assigned to the left
    */
  case object RightToLeft extends BindSet

  /**
    * Values are not modified at bind-time
    */
  case object None extends BindSet
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy