package
sampledata
Type Members
-
case class
AutoMPGData(index: List[Int], manufacturer: List[String], model: List[String], displ: List[Double], year: List[Int], cyl: List[Int], trans: List[String], drv: List[String], cls: List[String], cty: List[Double], hwy: List[Double]) extends Product with Serializable
-
-
case class
Holiday(date: LocalDate, summary: String) extends Product with Serializable
-
-
sealed
trait
Medal extends EnumType with UpperCase
-
trait
SampleData extends AnyRef
-
case class
SprintData(name: List[String], country: List[String], medal: List[Medal], time: List[Double], year: List[Int]) extends Product with Serializable
-
case class
USCountyData(name: String, state: USState, lats: List[Double], lons: List[Double]) extends Product with Serializable
-
sealed
trait
USState extends EnumType
-
case class
USStateData(name: String, region: String, lats: List[Double], lons: List[Double]) extends Product with Serializable
Inherited from AnyRef
Inherited from Any