<?php
use \WsdlToPhp\PackageBase\AbstractStructArrayBase;

/**
 * This class stands for ArrayOfAnagraficaPersonale_Model ArrayType
 * Meta information extracted from the WSDL
 * - nillable: true
 * - type: tns:ArrayOfAnagraficaPersonale_Model
 * @subpackage Arrays
 */
class ArrayOfAnagraficaPersonale_Model extends AbstractStructArrayBase
{
    /**
     * The AnagraficaPersonale_Model
     * Meta information extracted from the WSDL
     * - maxOccurs: unbounded
     * - minOccurs: 0
     * - nillable: true
     * @var AnagraficaPersonale_Model[]
     */
    public $AnagraficaPersonale_Model;
    /**
     * Constructor method for ArrayOfAnagraficaPersonale_Model
     * @uses ArrayOfAnagraficaPersonale_Model::setAnagraficaPersonale_Model()
     * @param AnagraficaPersonale_Model[] $anagraficaPersonale_Model
     */
    public function __construct(array $anagraficaPersonale_Model = array())
    {
        $this
            ->setAnagraficaPersonale_Model($anagraficaPersonale_Model);
    }
    /**
     * Get AnagraficaPersonale_Model value
     * An additional test has been added (isset) before returning the property value as
     * this property may have been unset before, due to the fact that this property is
     * removable from the request (nillable=true+minOccurs=0)
     * @return AnagraficaPersonale_Model[]|null
     */
    public function getAnagraficaPersonale_Model()
    {
        return isset($this->AnagraficaPersonale_Model) ? $this->AnagraficaPersonale_Model : null;
    }
    /**
     * This method is responsible for validating the values passed to the setAnagraficaPersonale_Model method
     * This method is willingly generated in order to preserve the one-line inline validation within the setAnagraficaPersonale_Model method
     * @param array $values
     * @return string A non-empty message if the values does not match the validation rules
     */
    public static function validateAnagraficaPersonale_ModelForArrayConstraintsFromSetAnagraficaPersonale_Model(array $values = array())
    {
        $message = '';
        $invalidValues = [];
        foreach ($values as $arrayOfAnagraficaPersonale_ModelAnagraficaPersonale_ModelItem) {
            // validation for constraint: itemType
            if (!$arrayOfAnagraficaPersonale_ModelAnagraficaPersonale_ModelItem instanceof AnagraficaPersonale_Model) {
                $invalidValues[] = is_object($arrayOfAnagraficaPersonale_ModelAnagraficaPersonale_ModelItem) ? get_class($arrayOfAnagraficaPersonale_ModelAnagraficaPersonale_ModelItem) : sprintf('%s(%s)', gettype($arrayOfAnagraficaPersonale_ModelAnagraficaPersonale_ModelItem), var_export($arrayOfAnagraficaPersonale_ModelAnagraficaPersonale_ModelItem, true));
            }
        }
        if (!empty($invalidValues)) {
            $message = sprintf('The AnagraficaPersonale_Model property can only contain items of type AnagraficaPersonale_Model, %s given', is_object($invalidValues) ? get_class($invalidValues) : (is_array($invalidValues) ? implode(', ', $invalidValues) : gettype($invalidValues)));
        }
        unset($invalidValues);
        return $message;
    }
    /**
     * Set AnagraficaPersonale_Model value
     * This property is removable from request (nillable=true+minOccurs=0), therefore
     * if the value assigned to this property is null, it is removed from this object
     * @throws \InvalidArgumentException
     * @param AnagraficaPersonale_Model[] $anagraficaPersonale_Model
     * @return ArrayOfAnagraficaPersonale_Model
     */
    public function setAnagraficaPersonale_Model(array $anagraficaPersonale_Model = array())
    {
        // validation for constraint: array
        if ('' !== ($anagraficaPersonale_ModelArrayErrorMessage = self::validateAnagraficaPersonale_ModelForArrayConstraintsFromSetAnagraficaPersonale_Model($anagraficaPersonale_Model))) {
            throw new \InvalidArgumentException($anagraficaPersonale_ModelArrayErrorMessage, __LINE__);
        }
        if (is_null($anagraficaPersonale_Model) || (is_array($anagraficaPersonale_Model) && empty($anagraficaPersonale_Model))) {
            unset($this->AnagraficaPersonale_Model);
        } else {
            $this->AnagraficaPersonale_Model = $anagraficaPersonale_Model;
        }
        return $this;
    }
    /**
     * Add item to AnagraficaPersonale_Model value
     * @throws \InvalidArgumentException
     * @param AnagraficaPersonale_Model $item
     * @return ArrayOfAnagraficaPersonale_Model
     */
    public function addToAnagraficaPersonale_Model(AnagraficaPersonale_Model $item)
    {
        // validation for constraint: itemType
        if (!$item instanceof AnagraficaPersonale_Model) {
            throw new \InvalidArgumentException(sprintf('The AnagraficaPersonale_Model property can only contain items of type AnagraficaPersonale_Model, %s given', is_object($item) ? get_class($item) : (is_array($item) ? implode(', ', $item) : gettype($item))), __LINE__);
        }
        $this->AnagraficaPersonale_Model[] = $item;
        return $this;
    }
    /**
     * Returns the current element
     * @see AbstractStructArrayBase::current()
     * @return AnagraficaPersonale_Model|null
     */
    public function current()
    {
        return parent::current();
    }
    /**
     * Returns the indexed element
     * @see AbstractStructArrayBase::item()
     * @param int $index
     * @return AnagraficaPersonale_Model|null
     */
    public function item($index)
    {
        return parent::item($index);
    }
    /**
     * Returns the first element
     * @see AbstractStructArrayBase::first()
     * @return AnagraficaPersonale_Model|null
     */
    public function first()
    {
        return parent::first();
    }
    /**
     * Returns the last element
     * @see AbstractStructArrayBase::last()
     * @return AnagraficaPersonale_Model|null
     */
    public function last()
    {
        return parent::last();
    }
    /**
     * Returns the element at the offset
     * @see AbstractStructArrayBase::offsetGet()
     * @param int $offset
     * @return AnagraficaPersonale_Model|null
     */
    public function offsetGet($offset)
    {
        return parent::offsetGet($offset);
    }
    /**
     * Returns the attribute name
     * @see AbstractStructArrayBase::getAttributeName()
     * @return string AnagraficaPersonale_Model
     */
    public function getAttributeName()
    {
        return 'AnagraficaPersonale_Model';
    }
}
