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
Ordering
- Alphabetic
- By Inheritance
Inherited
- NumericRange
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
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)