<?php

namespace Easy\EasyArray;

use \WsdlToPhp\PackageBase\AbstractStructArrayBase;

/**
 * This class stands for ArrayOfClsVoucherCheckpoint_Station2 EasyArray
 * Meta information extracted from the WSDL
 * - nillable: true
 * - type: tns:ArrayOfClsVoucherCheckpoint_Station2
 * @package Easy
 * @subpackage Arrays
 */
class EasyArrayOfClsVoucherCheckpoint_Station2 extends AbstractStructArrayBase
{
    /**
     * The ClsVoucherCheckpoint_Station2
     * Meta information extracted from the WSDL
     * - maxOccurs: unbounded
     * - minOccurs: 0
     * - nillable: true
     * @var \Easy\EasyStruct\EasyClsVoucherCheckpoint_Station2[]
     */
    public $ClsVoucherCheckpoint_Station2;
    /**
     * Constructor method for ArrayOfClsVoucherCheckpoint_Station2
     * @uses EasyArrayOfClsVoucherCheckpoint_Station2::setClsVoucherCheckpoint_Station2()
     * @param \Easy\EasyStruct\EasyClsVoucherCheckpoint_Station2[] $clsVoucherCheckpoint_Station2
     */
    public function __construct(array $clsVoucherCheckpoint_Station2 = array())
    {
        $this
            ->setClsVoucherCheckpoint_Station2($clsVoucherCheckpoint_Station2);
    }
    /**
     * Get ClsVoucherCheckpoint_Station2 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 \Easy\EasyStruct\EasyClsVoucherCheckpoint_Station2[]|null
     */
    public function getClsVoucherCheckpoint_Station2()
    {
        return isset($this->ClsVoucherCheckpoint_Station2) ? $this->ClsVoucherCheckpoint_Station2 : null;
    }
    /**
     * This method is responsible for validating the values passed to the setClsVoucherCheckpoint_Station2 method
     * This method is willingly generated in order to preserve the one-line inline validation within the setClsVoucherCheckpoint_Station2 method
     * @param array $values
     * @return string A non-empty message if the values does not match the validation rules
     */
    public static function validateClsVoucherCheckpoint_Station2ForArrayConstraintsFromSetClsVoucherCheckpoint_Station2(array $values = array())
    {
        $message = '';
        $invalidValues = [];
        foreach ($values as $arrayOfClsVoucherCheckpoint_Station2ClsVoucherCheckpoint_Station2Item) {
            // validation for constraint: itemType
            if (!$arrayOfClsVoucherCheckpoint_Station2ClsVoucherCheckpoint_Station2Item instanceof \Easy\EasyStruct\EasyClsVoucherCheckpoint_Station2) {
                $invalidValues[] = is_object($arrayOfClsVoucherCheckpoint_Station2ClsVoucherCheckpoint_Station2Item) ? get_class($arrayOfClsVoucherCheckpoint_Station2ClsVoucherCheckpoint_Station2Item) : sprintf('%s(%s)', gettype($arrayOfClsVoucherCheckpoint_Station2ClsVoucherCheckpoint_Station2Item), var_export($arrayOfClsVoucherCheckpoint_Station2ClsVoucherCheckpoint_Station2Item, true));
            }
        }
        if (!empty($invalidValues)) {
            $message = sprintf('The ClsVoucherCheckpoint_Station2 property can only contain items of type \Easy\EasyStruct\EasyClsVoucherCheckpoint_Station2, %s given', is_object($invalidValues) ? get_class($invalidValues) : (is_array($invalidValues) ? implode(', ', $invalidValues) : gettype($invalidValues)));
        }
        unset($invalidValues);
        return $message;
    }
    /**
     * Set ClsVoucherCheckpoint_Station2 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 \Easy\EasyStruct\EasyClsVoucherCheckpoint_Station2[] $clsVoucherCheckpoint_Station2
     * @return \Easy\EasyArray\EasyArrayOfClsVoucherCheckpoint_Station2
     */
    public function setClsVoucherCheckpoint_Station2(array $clsVoucherCheckpoint_Station2 = array())
    {
        // validation for constraint: array
        if ('' !== ($clsVoucherCheckpoint_Station2ArrayErrorMessage = self::validateClsVoucherCheckpoint_Station2ForArrayConstraintsFromSetClsVoucherCheckpoint_Station2($clsVoucherCheckpoint_Station2))) {
            throw new \InvalidArgumentException($clsVoucherCheckpoint_Station2ArrayErrorMessage, __LINE__);
        }
        if (is_null($clsVoucherCheckpoint_Station2) || (is_array($clsVoucherCheckpoint_Station2) && empty($clsVoucherCheckpoint_Station2))) {
            unset($this->ClsVoucherCheckpoint_Station2);
        } else {
            $this->ClsVoucherCheckpoint_Station2 = $clsVoucherCheckpoint_Station2;
        }
        return $this;
    }
    /**
     * Add item to ClsVoucherCheckpoint_Station2 value
     * @throws \InvalidArgumentException
     * @param \Easy\EasyStruct\EasyClsVoucherCheckpoint_Station2 $item
     * @return \Easy\EasyArray\EasyArrayOfClsVoucherCheckpoint_Station2
     */
    public function addToClsVoucherCheckpoint_Station2(\Easy\EasyStruct\EasyClsVoucherCheckpoint_Station2 $item)
    {
        // validation for constraint: itemType
        if (!$item instanceof \Easy\EasyStruct\EasyClsVoucherCheckpoint_Station2) {
            throw new \InvalidArgumentException(sprintf('The ClsVoucherCheckpoint_Station2 property can only contain items of type \Easy\EasyStruct\EasyClsVoucherCheckpoint_Station2, %s given', is_object($item) ? get_class($item) : (is_array($item) ? implode(', ', $item) : gettype($item))), __LINE__);
        }
        $this->ClsVoucherCheckpoint_Station2[] = $item;
        return $this;
    }
    /**
     * Returns the current element
     * @see AbstractStructArrayBase::current()
     * @return \Easy\EasyStruct\EasyClsVoucherCheckpoint_Station2|null
     */
    public function current()
    {
        return parent::current();
    }
    /**
     * Returns the indexed element
     * @see AbstractStructArrayBase::item()
     * @param int $index
     * @return \Easy\EasyStruct\EasyClsVoucherCheckpoint_Station2|null
     */
    public function item($index)
    {
        return parent::item($index);
    }
    /**
     * Returns the first element
     * @see AbstractStructArrayBase::first()
     * @return \Easy\EasyStruct\EasyClsVoucherCheckpoint_Station2|null
     */
    public function first()
    {
        return parent::first();
    }
    /**
     * Returns the last element
     * @see AbstractStructArrayBase::last()
     * @return \Easy\EasyStruct\EasyClsVoucherCheckpoint_Station2|null
     */
    public function last()
    {
        return parent::last();
    }
    /**
     * Returns the element at the offset
     * @see AbstractStructArrayBase::offsetGet()
     * @param int $offset
     * @return \Easy\EasyStruct\EasyClsVoucherCheckpoint_Station2|null
     */
    public function offsetGet($offset)
    {
        return parent::offsetGet($offset);
    }
    /**
     * Returns the attribute name
     * @see AbstractStructArrayBase::getAttributeName()
     * @return string ClsVoucherCheckpoint_Station2
     */
    public function getAttributeName()
    {
        return 'ClsVoucherCheckpoint_Station2';
    }
}
