1:   2:   3:   4:   5:   6:   7:   8:   9:  10:  11:  12:  13:  14:  15:  16:  17:  18:  19:  20:  21:  22:  23:  24:  25:  26:  27:  28:  29:  30:  31:  32:  33:  34:  35:  36:  37:  38:  39:  40:  41:  42:  43:  44:  45:  46:  47:  48:  49:  50:  51:  52:  53:  54:  55:  56:  57:  58:  59:  60:  61:  62:  63:  64:  65:  66:  67:  68:  69:  70:  71:  72:  73:  74:  75:  76:  77:  78:  79:  80:  81:  82:  83:  84:  85:  86:  87:  88:  89:  90:  91:  92:  93:  94:  95:  96:  97:  98:  99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: <?php
    namespace Inlm\SchemaGenerator\Diffs;
    use CzProject\SqlSchema;
    class UpdatedTable
    {
        /** @var string */
        private $tableName;
        /** @var array */
        private $updates;
        /**
         * @param  string
         */
        public function __construct($tableName, array $updates)
        {
            $this->tableName = $tableName;
            $this->updates = $updates;
        }
        /**
         * @return string
         */
        public function getTableName()
        {
            return $this->tableName;
        }
        /**
         * @return CreatedTableColumn[]
         */
        public function getCreatedColumns()
        {
            return $this->findUpdates('Inlm\SchemaGenerator\Diffs\CreatedTableColumn');
        }
        /**
         * @return UpdatedTableColumn[]
         */
        public function getUpdatedColumns()
        {
            return $this->findUpdates('Inlm\SchemaGenerator\Diffs\UpdatedTableColumn');
        }
        /**
         * @return RemovedTableColumn[]
         */
        public function getRemovedColumns()
        {
            return $this->findUpdates('Inlm\SchemaGenerator\Diffs\RemovedTableColumn');
        }
        /**
         * @return CreatedTableIndex[]
         */
        public function getCreatedIndexes()
        {
            return $this->findUpdates('Inlm\SchemaGenerator\Diffs\CreatedTableIndex');
        }
        /**
         * @return UpdatedTableIndex[]
         */
        public function getUpdatedIndexes()
        {
            return $this->findUpdates('Inlm\SchemaGenerator\Diffs\UpdatedTableIndex');
        }
        /**
         * @return RemovedTableIndex[]
         */
        public function getRemovedIndexes()
        {
            return $this->findUpdates('Inlm\SchemaGenerator\Diffs\RemovedTableIndex');
        }
        /**
         * @return CreatedForeignKey[]
         */
        public function getCreatedForeignKeys()
        {
            return $this->findUpdates('Inlm\SchemaGenerator\Diffs\CreatedForeignKey');
        }
        /**
         * @return UpdatedForeignKey[]
         */
        public function getUpdatedForeignKeys()
        {
            return $this->findUpdates('Inlm\SchemaGenerator\Diffs\UpdatedForeignKey');
        }
        /**
         * @return RemovedForeignKey[]
         */
        public function getRemovedForeignKeys()
        {
            return $this->findUpdates('Inlm\SchemaGenerator\Diffs\RemovedForeignKey');
        }
        /**
         * @return AddedTableOption[]
         */
        public function getAddedOptions()
        {
            return $this->findUpdates('Inlm\SchemaGenerator\Diffs\AddedTableOption');
        }
        /**
         * @return UpdatedTableOption[]
         */
        public function getUpdatedOptions()
        {
            return $this->findUpdates('Inlm\SchemaGenerator\Diffs\UpdatedTableOption');
        }
        /**
         * @return RemovedTableOption[]
         */
        public function getRemovedOptions()
        {
            return $this->findUpdates('Inlm\SchemaGenerator\Diffs\RemovedTableOption');
        }
        /**
         * @return UpdatedTableComment[]
         */
        public function getUpdatedComments()
        {
            return $this->findUpdates('Inlm\SchemaGenerator\Diffs\UpdatedTableComment');
        }
        /**
         * @param  string
         * @return array
         */
        private function findUpdates($class)
        {
            $result = array();
            foreach ($this->updates as $update) {
                if ($update instanceof $class) {
                    $result[] = $update;
                }
            }
            return $result;
        }
    }