/**
  * Clears the current object, sets all attributes to their default values and removes
  * outgoing references as well as back-references (from other objects to this one. Results probably in a database
  * change of those foreign objects when you call `save` there).
  */
 public function clear()
 {
     if (null !== $this->aType) {
         $this->aType->removeTypeComparison($this);
     }
     if (null !== $this->aComparison) {
         $this->aComparison->removeTypeComparison($this);
     }
     $this->id = null;
     $this->typeid = null;
     $this->comparisonid = null;
     $this->alreadyInSave = false;
     $this->clearAllReferences();
     $this->resetModified();
     $this->setNew(true);
     $this->setDeleted(false);
 }
 /**
  * Clears the current object, sets all attributes to their default values and removes
  * outgoing references as well as back-references (from other objects to this one. Results probably in a database
  * change of those foreign objects when you call `save` there).
  */
 public function clear()
 {
     if (null !== $this->aFittingRuleRow) {
         $this->aFittingRuleRow->removeItemFilterRule($this);
     }
     if (null !== $this->aconcatenationObj) {
         $this->aconcatenationObj->removeItemFilterRuleRelatedByConcatenation($this);
     }
     if (null !== $this->aItemFilterDef) {
         $this->aItemFilterDef->removeItemFilterRule($this);
     }
     if (null !== $this->acomparisonObj) {
         $this->acomparisonObj->removeItemFilterRuleRelatedByComparison($this);
     }
     $this->id = null;
     $this->fittingrulerowid = null;
     $this->ind3x = null;
     $this->concatenation = null;
     $this->itemfilterdefid = null;
     $this->comparison = null;
     $this->value = null;
     $this->content1 = null;
     $this->content2 = null;
     $this->alreadyInSave = false;
     $this->clearAllReferences();
     $this->resetModified();
     $this->setNew(true);
     $this->setDeleted(false);
 }
 /**
  * Clears the current object, sets all attributes to their default values and removes
  * outgoing references as well as back-references (from other objects to this one. Results probably in a database
  * change of those foreign objects when you call `save` there).
  */
 public function clear()
 {
     if (null !== $this->aRulesetRuleRow) {
         $this->aRulesetRuleRow->removeRulesetFilterRule($this);
     }
     if (null !== $this->aconcatenationObj) {
         $this->aconcatenationObj->removeRulesetFilterRuleRelatedByConcatenation($this);
     }
     if (null !== $this->aFittingRuleEntity) {
         $this->aFittingRuleEntity->removeRulesetFilterRule($this);
     }
     if (null !== $this->acomparisonObj) {
         $this->acomparisonObj->removeRulesetFilterRuleRelatedByComparison($this);
     }
     $this->id = null;
     $this->rulesetrulerowid = null;
     $this->ind3x = null;
     $this->concatenation = null;
     $this->fittingruleentityid = null;
     $this->comparison = null;
     $this->value = null;
     $this->alreadyInSave = false;
     $this->clearAllReferences();
     $this->resetModified();
     $this->setNew(true);
     $this->setDeleted(false);
 }
 /**
  * Exclude object from result
  *
  * @param   ChildComparison $comparison Object to remove from the list of results
  *
  * @return $this|ChildComparisonQuery The current query, for fluid interface
  */
 public function prune($comparison = null)
 {
     if ($comparison) {
         $this->addUsingAlias(ComparisonTableMap::COL_ID, $comparison->getId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }