/**
  * 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');
     }
 }