case class DateRange(name: String, start: Option[String], end: Option[String]) extends Product with Serializable
Defines a date range.
start
and end
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
- start
the start of the range (optional)
- end
the start of the range (optional)
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- DateRange
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
DateRange(name: String, start: Option[String], end: Option[String])
- name
the name of the range, to make it easier to find in the results
- start
the start of the range (optional)
- end
the start of the range (optional)