public function DateWithin(Datum $date)
 {
     if ($date->Before($this->start)) {
         return false;
     }
     if ($this->end !== null && $this->end->Before($date)) {
         return false;
     }
     return true;
 }