<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: grafeas/v1/cvss.proto

namespace Grafeas\V1\CVSSv3;

use UnexpectedValueException;

/**
 * Protobuf type <code>grafeas.v1.CVSSv3.UserInteraction</code>
 */
class UserInteraction
{
    /**
     * Generated from protobuf enum <code>USER_INTERACTION_UNSPECIFIED = 0;</code>
     */
    const USER_INTERACTION_UNSPECIFIED = 0;
    /**
     * Generated from protobuf enum <code>USER_INTERACTION_NONE = 1;</code>
     */
    const USER_INTERACTION_NONE = 1;
    /**
     * Generated from protobuf enum <code>USER_INTERACTION_REQUIRED = 2;</code>
     */
    const USER_INTERACTION_REQUIRED = 2;

    private static $valueToName = [
        self::USER_INTERACTION_UNSPECIFIED => 'USER_INTERACTION_UNSPECIFIED',
        self::USER_INTERACTION_NONE => 'USER_INTERACTION_NONE',
        self::USER_INTERACTION_REQUIRED => 'USER_INTERACTION_REQUIRED',
    ];

    public static function name($value)
    {
        if (!isset(self::$valueToName[$value])) {
            throw new UnexpectedValueException(sprintf(
                    'Enum %s has no name defined for value %s', __CLASS__, $value));
        }
        return self::$valueToName[$value];
    }


    public static function value($name)
    {
        $const = __CLASS__ . '::' . strtoupper($name);
        if (!defined($const)) {
            throw new UnexpectedValueException(sprintf(
                    'Enum %s has no value defined for name %s', __CLASS__, $name));
        }
        return constant($const);
    }
}


