AssignedCell

play.api.mvc.request.AssignedCell
final class AssignedCell[+A](val value: A) extends Cell[A]

A cell with a fixed value assigned to it.

Attributes

Graph
Supertypes
trait Cell[A]
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

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

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

Attributes

Inherited methods

override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Cell -> Any
Inherited from:
Cell

Concrete fields

override val value: A

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

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

Attributes