/**
  * Filter the query by a related \App\Models\TranslationLanguageKeyword object
  *
  * @param \App\Models\TranslationLanguageKeyword|ObjectCollection $translationLanguageKeyword the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildTranslationKeywordQuery The current query, for fluid interface
  */
 public function filterByTranslationLanguageKeyword($translationLanguageKeyword, $comparison = null)
 {
     if ($translationLanguageKeyword instanceof \App\Models\TranslationLanguageKeyword) {
         return $this->addUsingAlias(TranslationKeywordTableMap::COL_ID, $translationLanguageKeyword->getKeywordId(), $comparison);
     } elseif ($translationLanguageKeyword instanceof ObjectCollection) {
         return $this->useTranslationLanguageKeywordQuery()->filterByPrimaryKeys($translationLanguageKeyword->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByTranslationLanguageKeyword() only accepts arguments of type \\App\\Models\\TranslationLanguageKeyword or Collection');
     }
 }
 /**
  * Exclude object from result
  *
  * @param   ChildTranslationLanguageKeyword $translationLanguageKeyword Object to remove from the list of results
  *
  * @return $this|ChildTranslationLanguageKeywordQuery The current query, for fluid interface
  */
 public function prune($translationLanguageKeyword = null)
 {
     if ($translationLanguageKeyword) {
         $this->addCond('pruneCond0', $this->getAliasedColName(TranslationLanguageKeywordTableMap::COL_LANGUAGE_ID), $translationLanguageKeyword->getLanguageId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(TranslationLanguageKeywordTableMap::COL_KEYWORD_ID), $translationLanguageKeyword->getKeywordId(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }
 /**
  * Adds an object to the instance pool.
  *
  * Propel keeps cached copies of objects in an instance pool when they are retrieved
  * from the database. In some cases you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by find*()
  * and findPk*() calls.
  *
  * @param \App\Models\TranslationLanguageKeyword $obj A \App\Models\TranslationLanguageKeyword object.
  * @param string $key             (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool($obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if (null === $key) {
             $key = serialize(array((string) $obj->getLanguageId(), (string) $obj->getKeywordId()));
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }