<?php

namespace Enums;

use \WsdlToPhp\PackageBase\AbstractStructEnumBase;

/**
 * This class stands for pkgNumsGenerationPolicyV1 Enums
 * @subpackage Enumerations
 */
class PkgNumsGenerationPolicyV1 extends AbstractStructEnumBase
{
    /**
     * Constant for value 'STOP_ON_FIRST_ERROR'
     * @return string 'STOP_ON_FIRST_ERROR'
     */
    const VALUE_STOP_ON_FIRST_ERROR = 'STOP_ON_FIRST_ERROR';
    /**
     * Constant for value 'IGNORE_ERRORS'
     * @return string 'IGNORE_ERRORS'
     */
    const VALUE_IGNORE_ERRORS = 'IGNORE_ERRORS';
    /**
     * Constant for value 'ALL_OR_NOTHING'
     * @return string 'ALL_OR_NOTHING'
     */
    const VALUE_ALL_OR_NOTHING = 'ALL_OR_NOTHING';
    /**
     * Return allowed values
     * @uses self::VALUE_STOP_ON_FIRST_ERROR
     * @uses self::VALUE_IGNORE_ERRORS
     * @uses self::VALUE_ALL_OR_NOTHING
     * @return string[]
     */
    public static function getValidValues()
    {
        return array(
            self::VALUE_STOP_ON_FIRST_ERROR,
            self::VALUE_IGNORE_ERRORS,
            self::VALUE_ALL_OR_NOTHING,
        );
    }
}
