Packages

case class NumericRange(name: String, min: Option[Float], max: Option[Float]) extends Product with Serializable

Defines a numeric range.

min and max are both optional, but at least one should be provided.

name

the name of the range, to make it easier to find in the results

min

the lower bound (optional)

max

the upper bound (optional)

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NumericRange
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new NumericRange(name: String, min: Option[Float], max: Option[Float])

    name

    the name of the range, to make it easier to find in the results

    min

    the lower bound (optional)

    max

    the upper bound (optional)

Value Members

  1. val max: Option[Float]
  2. val min: Option[Float]
  3. val name: String
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product