Scalr\Upgrade\AbstractEntity::getIterator PHP Method

getIterator() public method

See also: IteratorAggregate::getIterator()
public getIterator ( )
    public function getIterator()
    {
        if (!$this->iterator) {
            $this->iterator = new EntityPropertiesIterator($this);
        }
        return $this->iterator;
    }