/**
  * Load an array of Word objects,
  * by StatusTypeId Index(es)
  * @param integer $intStatusTypeId
  * @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query
  * @return Word[]
  */
 public static function LoadArrayByStatusTypeId($intStatusTypeId, $objOptionalClauses = null)
 {
     // Call Word::QueryArray to perform the LoadArrayByStatusTypeId query
     try {
         return Word::QueryArray(QQ::Equal(QQN::Word()->StatusTypeId, $intStatusTypeId), $objOptionalClauses);
     } catch (QCallerException $objExc) {
         $objExc->IncrementOffset();
         throw $objExc;
     }
 }