/**
  * Exports the object as an array.
  *
  * You can specify the key type of the array by passing one of the class
  * type constants.
  *
  * @param     string  $keyType (optional) One of the class type constants TableMap::TYPE_PHPNAME, TableMap::TYPE_CAMELNAME,
  *                    TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM.
  *                    Defaults to TableMap::TYPE_PHPNAME.
  * @param     boolean $includeLazyLoadColumns (optional) Whether to include lazy loaded columns. Defaults to TRUE.
  * @param     array $alreadyDumpedObjects List of objects to skip to avoid recursion
  * @param     boolean $includeForeignObjects (optional) Whether to include hydrated related objects. Default to FALSE.
  *
  * @return array an associative array containing the field names (as keys) and field values
  */
 public function toArray($keyType = TableMap::TYPE_PHPNAME, $includeLazyLoadColumns = true, $alreadyDumpedObjects = array(), $includeForeignObjects = false)
 {
     if (isset($alreadyDumpedObjects['RulesetFilterRule'][$this->hashCode()])) {
         return '*RECURSION*';
     }
     $alreadyDumpedObjects['RulesetFilterRule'][$this->hashCode()] = true;
     $keys = RulesetFilterRuleTableMap::getFieldNames($keyType);
     $result = array($keys[0] => $this->getId(), $keys[1] => $this->getRulesetrulerowid(), $keys[2] => $this->getInd3x(), $keys[3] => $this->getConcatenation(), $keys[4] => $this->getFittingruleentityid(), $keys[5] => $this->getComparison(), $keys[6] => $this->getValue());
     $virtualColumns = $this->virtualColumns;
     foreach ($virtualColumns as $key => $virtualColumn) {
         $result[$key] = $virtualColumn;
     }
     if ($includeForeignObjects) {
         if (null !== $this->aRulesetRuleRow) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'rulesetRuleRow';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'rulesetrulerow';
                     break;
                 default:
                     $key = 'RulesetRuleRow';
             }
             $result[$key] = $this->aRulesetRuleRow->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
         }
         if (null !== $this->aconcatenationObj) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'comparison';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'comparison';
                     break;
                 default:
                     $key = 'Comparison';
             }
             $result[$key] = $this->aconcatenationObj->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
         }
         if (null !== $this->aFittingRuleEntity) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'fittingRuleEntity';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'fittingruleentity';
                     break;
                 default:
                     $key = 'FittingRuleEntity';
             }
             $result[$key] = $this->aFittingRuleEntity->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
         }
         if (null !== $this->acomparisonObj) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'comparison';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'comparison';
                     break;
                 default:
                     $key = 'Comparison';
             }
             $result[$key] = $this->acomparisonObj->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
         }
     }
     return $result;
 }
 /**
  * Exports the object as an array.
  *
  * You can specify the key type of the array by passing one of the class
  * type constants.
  *
  * @param     string  $keyType (optional) One of the class type constants TableMap::TYPE_PHPNAME, TableMap::TYPE_CAMELNAME,
  *                    TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM.
  *                    Defaults to TableMap::TYPE_PHPNAME.
  * @param     boolean $includeLazyLoadColumns (optional) Whether to include lazy loaded columns. Defaults to TRUE.
  * @param     array $alreadyDumpedObjects List of objects to skip to avoid recursion
  * @param     boolean $includeForeignObjects (optional) Whether to include hydrated related objects. Default to FALSE.
  *
  * @return array an associative array containing the field names (as keys) and field values
  */
 public function toArray($keyType = TableMap::TYPE_PHPNAME, $includeLazyLoadColumns = true, $alreadyDumpedObjects = array(), $includeForeignObjects = false)
 {
     if (isset($alreadyDumpedObjects['FittingRuleEntity'][$this->hashCode()])) {
         return '*RECURSION*';
     }
     $alreadyDumpedObjects['FittingRuleEntity'][$this->hashCode()] = true;
     $keys = FittingRuleEntityTableMap::getFieldNames($keyType);
     $result = array($keys[0] => $this->getId(), $keys[1] => $this->getName(), $keys[2] => $this->getUserid(), $keys[3] => $this->getIsglobal(), $keys[4] => $this->getIslisted(), $keys[5] => $this->getForkedid(), $keys[6] => $this->getIsfiltertypeuptodate(), $keys[7] => $this->getLastmodified());
     $utc = new \DateTimeZone('utc');
     if ($result[$keys[7]] instanceof \DateTime) {
         // When changing timezone we don't want to change existing instances
         $dateTime = clone $result[$keys[7]];
         $result[$keys[7]] = $dateTime->setTimezone($utc)->format('Y-m-d\\TH:i:s\\Z');
     }
     $virtualColumns = $this->virtualColumns;
     foreach ($virtualColumns as $key => $virtualColumn) {
         $result[$key] = $virtualColumn;
     }
     if ($includeForeignObjects) {
         if (null !== $this->aUser) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'user';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'user';
                     break;
                 default:
                     $key = 'User';
             }
             $result[$key] = $this->aUser->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
         }
         if (null !== $this->aFittingRuleEntityRelatedByForkedid) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'fittingRuleEntity';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'fittingruleentity';
                     break;
                 default:
                     $key = 'FittingRuleEntity';
             }
             $result[$key] = $this->aFittingRuleEntityRelatedByForkedid->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
         }
         if (null !== $this->collFittingRuleEntitiesRelatedById) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'fittingRuleEntities';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'fittingruleentities';
                     break;
                 default:
                     $key = 'FittingRuleEntities';
             }
             $result[$key] = $this->collFittingRuleEntitiesRelatedById->toArray(null, false, $keyType, $includeLazyLoadColumns, $alreadyDumpedObjects);
         }
         if (null !== $this->collFittingRuleRows) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'fittingRuleRows';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'fittingrulerows';
                     break;
                 default:
                     $key = 'FittingRuleRows';
             }
             $result[$key] = $this->collFittingRuleRows->toArray(null, false, $keyType, $includeLazyLoadColumns, $alreadyDumpedObjects);
         }
         if (null !== $this->collRulesetFilterRules) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'rulesetFilterRules';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'rulesetfilterrules';
                     break;
                 default:
                     $key = 'RulesetFilterRules';
             }
             $result[$key] = $this->collRulesetFilterRules->toArray(null, false, $keyType, $includeLazyLoadColumns, $alreadyDumpedObjects);
         }
     }
     return $result;
 }