c

play.api.mvc.request

AssignedCell

final class AssignedCell[+A] extends Cell[A]

A cell with a fixed value assigned to it.

Source
Cell.scala
Linear Supertypes
Cell[A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AssignedCell
  2. Cell
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new AssignedCell(value: A)

Value Members

  1. def evaluated: Boolean

    Whether or not the cell value has been evaluated yet.

    Whether or not the cell value has been evaluated yet. Sometimes it is useful to know this to avoid unnecessarily evaluating the cell value.

    Definition Classes
    Cell
  2. def toString(): String
    Definition Classes
    Cell → AnyRef → Any
  3. val value: A

    The value in the cell.

    The value in the cell. Calling this method may force the value to be evaluated.

    Definition Classes
    Cell