/**
  * @return RelationshipField
  */
 public function getField()
 {
     return parent::getField();
 }
 /**
  * @param Value $value
  * @return $this
  */
 public function add(Value $value)
 {
     $key = spl_object_hash($value->getField());
     $this->values[$key] = $value;
     return $this;
 }