/**
  * Filter the query by a related CyclicalEvents object
  *
  * @param   CyclicalEvents|PropelObjectCollection $cyclicalEvents The related object(s) to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return                 CyclicalEventHasListQuery The current query, for fluid interface
  * @throws PropelException - if the provided filter is invalid.
  */
 public function filterByCyclicalEvents($cyclicalEvents, $comparison = null)
 {
     if ($cyclicalEvents instanceof CyclicalEvents) {
         return $this->addUsingAlias(CyclicalEventHasListPeer::ID_CYCLICAL_EVENT, $cyclicalEvents->getIdCyclicalEvent(), $comparison);
     } elseif ($cyclicalEvents instanceof PropelObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(CyclicalEventHasListPeer::ID_CYCLICAL_EVENT, $cyclicalEvents->toKeyValue('PrimaryKey', 'IdCyclicalEvent'), $comparison);
     } else {
         throw new PropelException('filterByCyclicalEvents() only accepts arguments of type CyclicalEvents or PropelCollection');
     }
 }