final case class Snapshot(name: String, value: Any) extends Product with Serializable
Case class that stores the name and value of a variable or expression.
See the main documentation for trait Snapshots
for more information and examples.
- name
the name of the expression
- value
the value of the expression
- Source
- Snapshots.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Snapshot
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new Snapshot(name: String, value: Any)
- name
the name of the expression
- value
the value of the expression
Value Members
- val name: String
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def toString(): String
Overriden
toString
to print in {name} = {value} format.Overriden
toString
to print in {name} = {value} format.- returns
string in {name} = {value} format
- Definition Classes
- Snapshot → AnyRef → Any
- val value: Any