/**
  * @return Sequence
  */
 public function current()
 {
     $item = new SequenceItem($this->dataTypeDefinition, $this->property, $this->items[$this->position]['type']);
     $item->setProperties($this->items[$this->position]['properties']);
     return $item;
 }