com.thoughtworks.binding.Binding

Constants

final class Constants[+A] extends BindingSeq[A]

An data binding expression of sequence that never changes.

Source
Binding.scala
Linear Supertypes
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Constants
  2. BindingSeq
  3. AnyRef
  4. Any
Implicitly
  1. by AsBinding
  2. by any2stringadd
  3. by any2stringfmt
  4. by any2ArrowAssoc
  5. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. final class WithFilter extends AnyRef

    A helper to build complicated comprehension expressions for BindingSeq

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from Constants[A] to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (Constants[A], B)

    Implicit information
    This member is added by an implicit conversion from Constants[A] to ArrowAssoc[Constants[A]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  8. def addPatchedListener(listener: PatchedListener[A]): Unit

    Attributes
    protected
    Definition Classes
    ConstantsBindingSeq
    Annotations
    @inline()
  9. final def all: Binding[Seq[A]]

    Returns a new Binding expression of all elements in this BindingSeq.

    Returns a new Binding expression of all elements in this BindingSeq.

    Definition Classes
    BindingSeq
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. final def bind: Seq[A]

    Returns the current value of this Binding and marks the current @dom method depend on this Binding.

    Returns the current value of this Binding and marks the current @dom method depend on this Binding.

    Each time the value changes, in the current @dom method, all code after the current bind expression will be re-evaluated if the current @dom method is watching. However, code in current @dom method and before the current bind expression will not be re-evaluated. The above rule is not applied to DOM nodes created by XHTML literal. A bind expression under a DOM node does not affect siblings and parents of that node.

    Implicit information
    This member is added by an implicit conversion from Constants[A] to AsBinding[A] performed by method AsBinding in com.thoughtworks.binding.Binding.BindingSeq.
    Definition Classes
    Binding
    Annotations
    @macroImpl( ... )
    Note

    This method must be invoked inside a @dom method body or a Binding { ... } block..

  12. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def ensuring(cond: (Constants[A]) ⇒ Boolean, msg: ⇒ Any): Constants[A]

    Implicit information
    This member is added by an implicit conversion from Constants[A] to Ensuring[Constants[A]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: (Constants[A]) ⇒ Boolean): Constants[A]

    Implicit information
    This member is added by an implicit conversion from Constants[A] to Ensuring[Constants[A]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean, msg: ⇒ Any): Constants[A]

    Implicit information
    This member is added by an implicit conversion from Constants[A] to Ensuring[Constants[A]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean): Constants[A]

    Implicit information
    This member is added by an implicit conversion from Constants[A] to Ensuring[Constants[A]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  19. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def flatMap[B](f: (A) ⇒ BindingSeq[B]): BindingSeq[B]

    Returns a BindingSeq that flat-maps each element of this BindingSeq via f

    Returns a BindingSeq that flat-maps each element of this BindingSeq via f

    f

    The mapper function, which may contain magic bind calls.

    Definition Classes
    BindingSeq
    Annotations
    @macroImpl( ... )
  21. final def flatMapBinding[B](f: (A) ⇒ Binding[BindingSeq[B]]): BindingSeq[B]

    The underlying implementation of flatMap.

    The underlying implementation of flatMap.

    Definition Classes
    BindingSeq
    Annotations
    @inline()
    Note

    Don't use this method in user code.

  22. def foreach[U](f: (A) ⇒ U): Unit

    Definition Classes
    BindingSeq
    Annotations
    @macroImpl( ... )
  23. def foreachBinding[U](f: (A) ⇒ Binding[U]): Binding[Unit]

    The underlying implementation of foreach.

    The underlying implementation of foreach.

    Definition Classes
    BindingSeq
    Annotations
    @inline()
    Note

    Don't use this method in user code.

  24. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from Constants[A] to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  25. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  26. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  27. def isEmpty: Binding[Boolean]

    Definition Classes
    BindingSeq
  28. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  29. def length: Binding[Int]

    Definition Classes
    BindingSeq
  30. def map[B](f: (A) ⇒ B): BindingSeq[B]

    Returns a BindingSeq that maps each element of this BindingSeq via f

    Returns a BindingSeq that maps each element of this BindingSeq via f

    f

    The mapper function, which may contain magic bind calls.

    Definition Classes
    BindingSeq
    Annotations
    @macroImpl( ... )
  31. final def mapBinding[B](f: (A) ⇒ Binding[B]): BindingSeq[B]

    The underlying implementation of map.

    The underlying implementation of map.

    Definition Classes
    BindingSeq
    Annotations
    @inline()
    Note

    Don't use this method in user code.

  32. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  33. def nonEmpty: Binding[Boolean]

    Definition Classes
    BindingSeq
  34. final def notify(): Unit

    Definition Classes
    AnyRef
  35. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  36. def removePatchedListener(listener: PatchedListener[A]): Unit

    Attributes
    protected
    Definition Classes
    ConstantsBindingSeq
    Annotations
    @inline()
  37. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  38. def toString(): String

    Definition Classes
    AnyRef → Any
  39. final def unwatch(): Unit

    Disables automatic recalculation.

    Disables automatic recalculation.

    Definition Classes
    BindingSeq
    Annotations
    @inline()
    Note

    This method is recursive, which means that the dependencies of this BindingSeq will be unwatched as well.

  40. def value: Seq[A]

    Returns the current value of this BindingSeq.

    Returns the current value of this BindingSeq.

    Definition Classes
    ConstantsBindingSeq
    Annotations
    @inline()
  41. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def watch(): Unit

    Enables automatic recalculation.

    Enables automatic recalculation.

    You may invoke this method more than once. Then, when you want to disable automatic recalculation, you must invoke unwatch same times as the number of calls to this method.

    Definition Classes
    BindingSeq
    Annotations
    @inline()
    Note

    This method is recursive, which means that the dependencies of this BindingSeq will be watched as well.

  45. def withFilter(condition: (A) ⇒ Boolean): WithFilter

    Returns a view of this BindingSeq that applied a filter of condition

    Returns a view of this BindingSeq that applied a filter of condition

    Definition Classes
    BindingSeq
    Annotations
    @macroImpl( ... )
  46. final def withFilterBinding(condition: (A) ⇒ Binding[Boolean]): WithFilter

    The underlying implementation of withFilter.

    The underlying implementation of withFilter.

    Definition Classes
    BindingSeq
    Annotations
    @inline()
    Note

    Don't use this method in user code.

  47. def [B](y: B): (Constants[A], B)

    Implicit information
    This member is added by an implicit conversion from Constants[A] to ArrowAssoc[Constants[A]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from Constants[A] to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (constants: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from Constants[A] to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (constants: StringFormat).self
    Definition Classes
    StringFormat
  3. final def unwatch(): Unit

    Disable automatic recalculation.

    Disable automatic recalculation.

    Implicit information
    This member is added by an implicit conversion from Constants[A] to AsBinding[A] performed by method AsBinding in com.thoughtworks.binding.Binding.BindingSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (constants: AsBinding[A]).unwatch()
    Definition Classes
    Binding
    Annotations
    @inline()
    Note

    This method is recursive, which means that the dependencies of this Binding will be unwatched as well.

  4. final def watch(): Unit

    Enable automatic recalculation.

    Enable automatic recalculation.

    You may invoke this method more than once. Then, when you want to disable automatic recalculation, you must invoke unwatch same times as the number of calls to this method.

    Implicit information
    This member is added by an implicit conversion from Constants[A] to AsBinding[A] performed by method AsBinding in com.thoughtworks.binding.Binding.BindingSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (constants: AsBinding[A]).watch()
    Definition Classes
    Binding
    Annotations
    @inline()
    Note

    This method is recursive, which means that the dependencies of this Binding will be watched as well.

Deprecated Value Members

  1. final def each: Seq[A]

    Implicit information
    This member is added by an implicit conversion from Constants[A] to AsBinding[A] performed by method AsBinding in com.thoughtworks.binding.Binding.BindingSeq.
    Definition Classes
    Binding
    Annotations
    @macroImpl( ... ) @deprecated
    Deprecated

    (Since version 7.0.0) Use bind instead

  2. def get: Seq[A]

    Returns the current value of this BindingSeq.

    Returns the current value of this BindingSeq.

    Definition Classes
    ConstantsBindingSeq
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 11.0.0) Use value instead

    Note

    This method is used for internal testing purpose only.

  3. def x: Constants[A]

    Implicit information
    This member is added by an implicit conversion from Constants[A] to ArrowAssoc[Constants[A]] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (constants: ArrowAssoc[Constants[A]]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  4. def x: Constants[A]

    Implicit information
    This member is added by an implicit conversion from Constants[A] to Ensuring[Constants[A]] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (constants: Ensuring[Constants[A]]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from BindingSeq[A]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion AsBinding from Constants[A] to AsBinding[A]

Inherited by implicit conversion any2stringadd from Constants[A] to StringAdd

Inherited by implicit conversion any2stringfmt from Constants[A] to StringFormat

Inherited by implicit conversion any2ArrowAssoc from Constants[A] to ArrowAssoc[Constants[A]]

Inherited by implicit conversion any2Ensuring from Constants[A] to Ensuring[Constants[A]]

Ungrouped